summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-18 07:54:54 +0100
committerAndrew Dolgov <[email protected]>2005-11-18 07:54:54 +0100
commita2411bd9d9e41104afea6edf7148dfd785e5265e (patch)
tree969703b4f316c48d105a99c4a149a83002d1a893 /backend.php
parent2aaacbc03ee28d2ff6b842fc5481ba2c3ca2f077 (diff)
tiny fix in prefs-editor
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index edef18a03..a8a94cf6e 100644
--- a/backend.php
+++ b/backend.php
@@ -1654,7 +1654,8 @@
FROM ttrss_prefs,ttrss_prefs_types,ttrss_prefs_sections,ttrss_user_prefs
WHERE type_id = ttrss_prefs_types.id AND
section_id = ttrss_prefs_sections.id AND
- ttrss_user_prefs.pref_name = ttrss_prefs.pref_name
+ ttrss_user_prefs.pref_name = ttrss_prefs.pref_name AND
+ owner_uid = ".$_SESSION["uid"]."
ORDER BY section_id,short_desc");
print "<form action=\"backend.php\" method=\"POST\">";