summaryrefslogtreecommitdiff
path: root/include/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/functions.php')
-rw-r--r--include/functions.php8
1 files changed, 4 insertions, 4 deletions
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();