From 6b83b0487a376b0f8dd76871cdfa470a137b2166 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Fri, 19 Dec 2008 17:31:21 +0000 Subject: [PATCH] INC_POOL -> data renamed --- inc/filters.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/inc/filters.php b/inc/filters.php index 82f9dcb27a..16b5020e5a 100644 --- a/inc/filters.php +++ b/inc/filters.php @@ -387,25 +387,25 @@ function FILTER_SOLVE_TASK ($data) { } // Filter to load include files -function FILTER_LOAD_INCLUDES ($INC_POOL) { +function FILTER_LOAD_INCLUDES ($data) { global $CSS; // Is it an array? - if ((!isset($INC_POOL)) || (!is_array($INC_POOL))) { + if ((!isset($data)) || (!is_array($data))) { // Then abort here DEBUG_LOG(__FILE__, __LINE__, "INC_POOL is no array!"); return; } // END - if // Check for added include files - if (count($INC_POOL) > 0) { + if (count($data) > 0) { // Loads every include file - foreach ($INC_POOL as $fqfn) { - require_once($fqfn); + foreach ($data as $FQFN) { + require_once($FQFN); } // END - foreach // Reset array - $INC_POOL = array(); + $data = array(); } // END - if } -- 2.30.2