From e3adacc5885e46b014236195b2f1eb265b3cc14e Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 17 Sep 2020 09:18:03 +0300 Subject: fix several cases of Db class being invoked as wrong name (as DB) --- include/functions.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/functions.php') diff --git a/include/functions.php b/include/functions.php index c2cc4a292..bb7974f7f 100644 --- a/include/functions.php +++ b/include/functions.php @@ -485,7 +485,7 @@ if (get_schema_version() < 63) $profile_qpart = ""; - $pdo = DB::pdo(); + $pdo = Db::pdo(); $in_nested_tr = false; try { @@ -573,7 +573,7 @@ $_SESSION["uid"] = $user_id; $_SESSION["auth_module"] = $auth_module; - $pdo = DB::pdo(); + $pdo = Db::pdo(); $sth = $pdo->prepare("SELECT login,access_level,pwd_hash FROM ttrss_users WHERE id = ?"); $sth->execute([$user_id]); @@ -662,7 +662,7 @@ function initialize_user($uid) { - $pdo = DB::pdo(); + $pdo = Db::pdo(); $sth = $pdo->prepare("insert into ttrss_feeds (owner_uid,title,feed_url) values (?, 'Tiny Tiny RSS: Forum', @@ -861,7 +861,7 @@ function get_schema_version($nocache = false) { global $schema_version; - $pdo = DB::pdo(); + $pdo = Db::pdo(); if (!$schema_version && !$nocache) { $row = $pdo->query("SELECT schema_version FROM ttrss_version")->fetch(); -- cgit v1.2.3