OTA PART 2 Setting Page

This commit is contained in:
JonatanRek
2019-10-25 18:48:48 +02:00
parent 66b433950b
commit 1e464e6e53
3 changed files with 31 additions and 10 deletions

View File

@@ -3,7 +3,7 @@ class UserManager
{
public function getUsers () {
try {
$allUsers = Db::loadAll ("SELECT user_id, username, at_home FROM users");
$allUsers = Db::loadAll ("SELECT user_id, username, at_home, ota FROM users");
return $allUsers;
} catch(PDOException $error) {
echo $error->getMessage();