Debug code commented out
[mailer.git] / inc / filters.php
index 4a55f46e244a403e21f5c7f3886c7bad1cff3d80..3027b456ac09659e86c18114aaf2477f710062d1 100644 (file)
@@ -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