]> git.mxchange.org Git - mailer.git/blobdiff - inc/db/lib-mysql3.php
Updating profiles fixed. It was still broken since I have changed the password hashin...
[mailer.git] / inc / db / lib-mysql3.php
index fc424e00289fab1c11706bc797793a26b238a0da..c463f8de30061e4f730a9fd20d85a687c57cc927 100644 (file)
@@ -39,18 +39,18 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
 }
 
 // SQL queries
-function SQL_QUERY($sql_string, $F, $L, $compile=false)
+function SQL_QUERY($sql_string, $F, $L)
 {
        global $link, $CSS, $CONFIG, $OK;
 
        // Run SQL command
        $result = @mysql_query($sql_string, $link)
-        or ADD_FATAL($F." (".$L."):".mysql_error()."<BR>
-".MYSQL_QUERY_STRING."<BR>
+        or ADD_FATAL($F." (".$L."):".mysql_error()."<br />
+".MYSQL_QUERY_STRING."<br />
 ".$sql_string);
 
-        // Debug output
-        print "Query=<em>".$sql_string."</em>, affected=<b>".SQL_AFFECTEDROWS()."</b>, numrows=<b>".SQL_NUMROWS($result)."</b><br />\n";
+       // Debug output
+       //* DEBUG: */ print "Query=<em>".$sql_string."</em>, affected=<b>".SQL_AFFECTEDROWS()."</b>, numrows=<b>".SQL_NUMROWS($result)."</b><br />\n";
 
        if (($CSS != "1") && ($CSS != "-1") && (DEBUG_MODE) && (DEBUG_SQL))
        {