Skip to content

Commit fab99df

Browse files
author
Radovan Janjic
committed
Update MySQL_wrapper.class.php
1 parent 15d66df commit fab99df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MySQL_wrapper.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ function query($sql) {
293293
unset($l, $p);
294294
}
295295
if($this->logQueries) $start = $this->getMicrotime();
296-
$this->query = $this->call('query', $sql) or $this->error("Query fail -> " . $sql);
296+
$this->query = $this->call('query', $sql) or $this->error("Query fail: " . $sql);
297297
$this->affected = $this->call('affected_rows');
298298
if ($this->query && $this->logQueries) $this->log('QUERY', "EXEC -> " . number_format($this->getMicrotime() - $start, 8) . " -> " . $sql);
299299
return $this->query ? $this->query : FALSE;

0 commit comments

Comments
 (0)