sanity_check: do not invoke PDO without checking that it exists
This commit is contained in:
parent
97a5e13370
commit
3eecebc34f
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
if (SINGLE_USER_MODE) {
|
||||
if (SINGLE_USER_MODE && class_exists("PDO")) {
|
||||
$pdo = DB::pdo();
|
||||
|
||||
$res = $pdo->query("SELECT id FROM ttrss_users WHERE id = 1");
|
||||
|
|
Loading…
Reference in a new issue