X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Finc-functions.php;h=e65057863644444865c1357a5414347077002576;hp=7b33f373227ce3ff16b2a07f97855519803da402;hb=596c8ab32594401ca84abfbfe35513ddfff31bec;hpb=63f159414369b5ea19a8ca75d8cd8033c45d8341 diff --git a/inc/inc-functions.php b/inc/inc-functions.php index 7b33f37322..e650578636 100644 --- a/inc/inc-functions.php +++ b/inc/inc-functions.php @@ -93,7 +93,7 @@ function removeIncludeFromPool ($pool, $inc) { $key = array_search($inc, getIncludePool($pool)); // Is it valid? - if ($key !== false) { + if ($key !== FALSE) { // Then remove it unset($GLOBALS['inc_pool'][$pool][$key]); @@ -117,7 +117,7 @@ function loadIncludePool ($pool) { // Loads an include file and logs any missing files for debug purposes function loadInclude ($inc) { - // Do we have cache? + // Is there cache? if (!isset($GLOBALS['inc_loaded'][$inc])) { // Is the include file there? if (!isIncludeReadable($inc)) { @@ -147,7 +147,7 @@ function loadIncludeOnce ($inc) { // Checks whether an include file (non-FQFN better) is readable function isIncludeReadable ($inc) { - // Do we have cache? + // Is there cache? if (!isset($GLOBALS['inc_readable'][$inc])) { // Construct FQFN $FQFN = getPath() . $inc;