mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
Fix for db mysqli class.
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9878 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
39fd65dc7e
commit
f572ed8363
2 changed files with 9 additions and 1 deletions
|
|
@ -156,7 +156,7 @@
|
|||
if(isset($arrayIndexEndValue)) return $output;
|
||||
else return $output[0];
|
||||
}
|
||||
mysql_free_result($result);
|
||||
$this->db_free_result($result);
|
||||
return $output;
|
||||
}
|
||||
|
||||
|
|
@ -439,6 +439,10 @@
|
|||
{
|
||||
return mysql_fetch_object($result);
|
||||
}
|
||||
|
||||
function db_free_result(&$result){
|
||||
return mysql_free_result($result);
|
||||
}
|
||||
|
||||
function getParser(){
|
||||
return new DBParser('`', '`', $this->prefix);
|
||||
|
|
|
|||
|
|
@ -112,6 +112,10 @@
|
|||
{
|
||||
return mysqli_fetch_object($result);
|
||||
}
|
||||
|
||||
function db_free_result(&$result){
|
||||
return mysqli_free_result($result);
|
||||
}
|
||||
}
|
||||
|
||||
return new DBMysqli;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue