Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[mailer.git] / inc / inc-functions.php
index 7b33f373227ce3ff16b2a07f97855519803da402..13ce10c5fdd6dc1695559506a180dccf443ceff4 100644 (file)
@@ -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;