Debug lines added
[mailer.git] / inc / functions.php
index e04576056a34b1076468db2d895d1955ff75b1f5..9c34c9544ed63a8b76f3c399575e0f0dcac7eb9b 100644 (file)
@@ -2568,6 +2568,8 @@ function getActualVersion ($type = 0) {
 
 // Loads an include file and logs any missing files for debug purposes
 function LOAD_INC ($INC) {
+       echo "LOAD:{$INC}<br />\n";
+
        // Get constant path
        $PATH = constant('PATH');
 
@@ -2597,6 +2599,7 @@ function LOAD_INC ($INC) {
 function LOAD_INC_ONCE ($INC) {
        // Is it not loaded?
        if (!isset($GLOBALS['cache_array']['load_once'][$INC])) {
+               echo "ONCE:{$INC}<br />\n";
                // Then try to load it
                LOAD_INC($INC);