diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2005-11-18 07:54:54 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2005-11-18 07:54:54 +0100 |
| commit | a2411bd9d9e41104afea6edf7148dfd785e5265e (patch) | |
| tree | 969703b4f316c48d105a99c4a149a83002d1a893 | |
| parent | 2aaacbc03ee28d2ff6b842fc5481ba2c3ca2f077 (diff) | |
tiny fix in prefs-editor
| -rw-r--r-- | backend.php | 3 |
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\">"; |