mirror of
https://github.com/wallabag/wallabag.git
synced 2025-04-23 02:14:07 +00:00
[change] getConfigUser is now a public function
This commit is contained in:
parent
39cc09dfc3
commit
5846b0f1b3
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ class Database {
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function getConfigUser($id) {
|
public function getConfigUser($id) {
|
||||||
$sql = "SELECT * FROM users_config WHERE user_id = ?";
|
$sql = "SELECT * FROM users_config WHERE user_id = ?";
|
||||||
$query = $this->executeQuery($sql, array($id));
|
$query = $this->executeQuery($sql, array($id));
|
||||||
$result = $query->fetchAll();
|
$result = $query->fetchAll();
|
||||||
|
|
Loading…
Reference in a new issue