Bug fix in dbcall

This commit is contained in:
Alex Bilbie 2012-08-20 15:49:57 +01:00
parent 6fdb6177bc
commit 326e96cc17
2 changed files with 2 additions and 2 deletions

View File

@ -513,6 +513,6 @@ class Server
unset($args[0]);
$params = array_values($args);
return call_user_func_array(array($this->db, $method), $args);
return call_user_func_array(array($this->db, $method), $params);
}
}

View File

@ -219,6 +219,6 @@ class Server
unset($args[0]);
$params = array_values($args);
return call_user_func_array(array($this->_db, $method), $args);
return call_user_func_array(array($this->_db, $method), $params);
}
}