From 990143bc76b43047c3fa20b33580d345de3e7b75 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sat, 28 Feb 2009 23:58:42 +0000 Subject: [PATCH] Debug lines removed, type rewritten --- inc/functions.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/inc/functions.php b/inc/functions.php index 9c34c9544e..61aeeddf38 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -2568,8 +2568,6 @@ function getActualVersion ($type = 0) { // Loads an include file and logs any missing files for debug purposes function LOAD_INC ($INC) { - echo "LOAD:{$INC}
\n"; - // Get constant path $PATH = constant('PATH'); @@ -2599,12 +2597,11 @@ function LOAD_INC ($INC) { function LOAD_INC_ONCE ($INC) { // Is it not loaded? if (!isset($GLOBALS['cache_array']['load_once'][$INC])) { - echo "ONCE:{$INC}
\n"; // Then try to load it LOAD_INC($INC); // And mark it as loaded - $GLOBALS['cache_array']['load_once'][$INC] = true; + $GLOBALS['cache_array']['load_once'][$INC] = "loaded"; } // END - if } -- 2.39.5