summaryrefslogtreecommitdiff
path: root/classes/opml.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-25 12:46:13 +0300
committerAndrew Dolgov <[email protected]>2021-02-25 12:46:13 +0300
commitbd2314170dc183c154c2af05686ddb0224b5d133 (patch)
tree762e6563377f4baeadd7a4f995cec57dbeacac90 /classes/opml.php
parente858e979e9e6daf1888b007d509cc4afe5443811 (diff)
implement prefs UI based on new prefs class and a few more things
Diffstat (limited to 'classes/opml.php')
-rw-r--r--classes/opml.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/opml.php b/classes/opml.php
index cbc1269e3..6c7cab606 100644
--- a/classes/opml.php
+++ b/classes/opml.php
@@ -153,7 +153,7 @@ class OPML extends Handler_Protected {
if ($include_settings) {
$out .= "<outline text=\"tt-rss-prefs\" schema-version=\"".SCHEMA_VERSION."\">";
- $sth = $this->pdo->prepare("SELECT pref_name, value FROM ttrss_user_prefs WHERE
+ $sth = $this->pdo->prepare("SELECT pref_name, value FROM ttrss_user_prefs2 WHERE
profile IS NULL AND owner_uid = ? ORDER BY pref_name");
$sth->execute([$owner_uid]);