turn off database debug

This commit is contained in:
Isaac Connor 2017-11-24 15:42:44 -05:00
parent 8a40a613bf
commit b1bb0020d3
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ function dbQuery( $sql, $params=NULL ) {
} else {
$result = $dbConn->query( $sql );
}
if ( 1 ) {
if ( 0 ) {
if ( $params )
Warning("SQL: $sql" . implode(',',$params) . ' rows: '.$result->rowCount() );
else