]> git.mxchange.org Git - mailer.git/commitdiff
Fix for fix
authorRoland Häder <roland@mxchange.org>
Sun, 10 Jun 2012 13:05:01 +0000 (13:05 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 10 Jun 2012 13:05:01 +0000 (13:05 +0000)
inc/wrapper-functions.php

index d53b0b6e21d0fdb3e0b478572d4fb1a24360bd32..f10335f0442327aee498725935b360b2ab02f77d 100644 (file)
@@ -571,7 +571,7 @@ function setWhatFromConfig ($configEntry) {
 // Checks wether what is set and optionally aborts on miss
 function isWhatSet ($strict =  false) {
        // Check for it
-       $isset = ((isset($GLOBALS['__what']) && (!empty($GLOBALS['__what']))) || (is_null($GLOBALS['__what'])));
+       $isset = (isset($GLOBALS['__what']) && (!empty($GLOBALS['__what'])));
 
        // Should we abort here?
        if (($strict === true) && ($isset === false)) {
@@ -606,7 +606,7 @@ function setAction ($newAction) {
 // Checks wether action is set and optionally aborts on miss
 function isActionSet ($strict =  false) {
        // Check for it
-       $isset = (((isset($GLOBALS['__action'])) && (!empty($GLOBALS['__action']))) || (is_null($GLOBALS['__action'])));
+       $isset = ((isset($GLOBALS['__action'])) && (!empty($GLOBALS['__action'])));
 
        // Should we abort here?
        if (($strict === true) && ($isset === false)) {