Error Exception
-
Line 340 of /includes/admin.php could use an error check if the value is null. Currently if the plugin cannot fetch the session var, it throws an error. Suggested modification, change this:
if ($_SESSION['settings_turned_of'] === false && ($apiActiveNotConfigured || $smtpActiveNotConfigured) ) { ?>
to this:
if (isset($_SESSION['settings_turned_of']) && $_SESSION['settings_turned_of'] === false && ($apiActiveNotConfigured || $smtpActiveNotConfigured)) { ?>
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Error Exception’ is closed to new replies.