mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-22 13:09:44 +05:30
Bug fix in dbcall
This commit is contained in:
parent
6fdb6177bc
commit
326e96cc17
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user