From: Roland Häder Date: Tue, 28 Jul 2009 21:39:06 +0000 (+0000) Subject: Same fix for isActionSet() X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=ff21321f09918909f7e21f850b6617156323e332;ds=sidebyside Same fix for isActionSet() --- diff --git a/inc/wrapper-functions.php b/inc/wrapper-functions.php index 3622206589..1df653fb9b 100644 --- a/inc/wrapper-functions.php +++ b/inc/wrapper-functions.php @@ -511,7 +511,7 @@ function setAction ($newAction) { // Checks wether action is set and optionally aborts on miss function isActionSet ($abortOnMiss = false) { // Check for it - $isset = (!empty($GLOBALS['action'])); + $isset = (isset($GLOBALS['action'])); // Should we abort here? if (($abortOnMiss === true) && ($isset === false)) {