add timestamp to debug SQL output

This commit is contained in:
Sarah Hoffmann
2023-02-18 09:49:30 +01:00
parent dd5cd97713
commit fa681ce246

View File

@@ -135,7 +135,7 @@ class Debug
public static function printSQL($sSQL)
{
echo '<p><tt><font color="#aaa">'.$sSQL.'</font></tt></p>'."\n";
echo '<p><tt><b>'.date('c').'</b> <font color="#aaa">'.$sSQL.'</font></tt></p>'."\n";
}
private static function outputVar($mVar, $sPreNL)