1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:45:56 +00:00

ccache, misc: fixes

feeds: start PDO transition
This commit is contained in:
Andrew Dolgov
2017-12-01 19:42:02 +03:00
parent 1271407eea
commit cc9450c309
5 changed files with 125 additions and 89 deletions

View File

@@ -33,7 +33,7 @@ class Db_Prefs {
FROM
ttrss_user_prefs,ttrss_prefs,ttrss_prefs_types
WHERE
profile = :profile OR (:profile IS NULL AND profile IS NULL) AND
(profile = :profile OR (:profile IS NULL AND profile IS NULL)) AND
ttrss_prefs.pref_name NOT LIKE '_MOBILE%' AND
ttrss_prefs_types.id = type_id AND
owner_uid = :uid AND
@@ -74,7 +74,7 @@ class Db_Prefs {
FROM
ttrss_user_prefs,ttrss_prefs,ttrss_prefs_types
WHERE
profile = :profile OR (:profile IS NULL AND profile IS NULL) AND
(profile = :profile OR (:profile IS NULL AND profile IS NULL)) AND
ttrss_user_prefs.pref_name = :pref_name AND
ttrss_prefs_types.id = type_id AND
owner_uid = :uid AND