[change] getConfigUser is now a public function

This commit is contained in:
Nicolas Lœuillet 2013-12-03 10:39:45 +01:00
parent 39cc09dfc3
commit 5846b0f1b3
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ class Database {
return TRUE;
}
private function getConfigUser($id) {
public function getConfigUser($id) {
$sql = "SELECT * FROM users_config WHERE user_id = ?";
$query = $this->executeQuery($sql, array($id));
$result = $query->fetchAll();