From: Roland Häder Date: Tue, 3 Nov 2009 23:36:35 +0000 (+0000) Subject: Debug code commented out X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=7bfee4bc71e5b7b741f3451b27ba0a09574dfca8 Debug code commented out --- 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