Browse Source

Fixing typo

dev
colshrapnel 12 years ago
parent
commit
6c5f901084
  1. 2
      safemysql.class.php

2
safemysql.class.php

@ -320,7 +320,7 @@ class SafeMySQL
$ret = array(); $ret = array();
if ( $res = $this->rawQuery($query) ) if ( $res = $this->rawQuery($query) )
{ {
while($row = $res->fetch($res)) while($row = $this->fetch($res))
{ {
$key = $row[$index]; $key = $row[$index];
unset($row[$index]); unset($row[$index]);

Loading…
Cancel
Save