From 7bfee4bc71e5b7b741f3451b27ba0a09574dfca8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 3 Nov 2009 23:36:35 +0000 Subject: [PATCH 1/1] Debug code commented out --- inc/filters.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/filters.php b/inc/filters.php index 4a55f46e24..3027b456ac 100644 --- a/inc/filters.php +++ b/inc/filters.php @@ -258,11 +258,11 @@ function FILTER_RUN_SQLS ($data) { // Do we have an "ALTER TABLE" command? if (substr(strtolower($sql), 0, 11) == 'alter table') { // Analyse the alteration command - /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "Alterting table: {$sql}"); + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "Alterting table: {$sql}"); SQL_ALTER_TABLE($sql, __FUNCTION__, __LINE__); } else { // Run regular SQL command - /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "Running regular query: {$sql}"); + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "Running regular query: {$sql}"); SQL_QUERY($sql, __FUNCTION__, __LINE__, false); } } // END - if -- 2.30.2