]> git.mxchange.org Git - mailer.git/blobdiff - inc/inc-functions.php
Invisible/locked menus are now styleable with CSS classes (sub_)menu_[in]visible_css...
[mailer.git] / inc / inc-functions.php
index c31c7eb78bf1167c12487e2b1074d17693d2c880..989eb238d4fb910d572ab93a4b0c8eb02f77420a 100644 (file)
@@ -57,7 +57,13 @@ function setIncludePool ($pool, $includePool) {
 // Getter for INC_POOL
 function getIncludePool ($pool) {
        //* DEBUG: */ print __FUNCTION__.':pool='.$pool.'<br />';
-       return $GLOBALS['inc_pool'][$pool];
+       if (isset($GLOBALS['inc_pool'][$pool])) {
+               // Return found pool (array)
+               return $GLOBALS['inc_pool'][$pool];
+       } else {
+               // Return empty array if not found
+               return array();
+       }
 }
 
 // Count INC_POOL
@@ -117,7 +123,7 @@ function loadInclude ($inc) {
                // Is the include file there?
                if (!isIncludeReadable($inc)) {
                        // Not there so log it
-                       debug_report_bug(sprintf("Include file %s not found.", $inc));
+                       debug_report_bug(__FUNCTION__, __LINE__, sprintf("Include file %s not found.", $inc));
                } // END - if
        } // END - if