tiny fix in prefs-editor
This commit is contained in:
parent
2aaacbc03e
commit
a2411bd9d9
|
@ -1654,7 +1654,8 @@
|
||||||
FROM ttrss_prefs,ttrss_prefs_types,ttrss_prefs_sections,ttrss_user_prefs
|
FROM ttrss_prefs,ttrss_prefs_types,ttrss_prefs_sections,ttrss_user_prefs
|
||||||
WHERE type_id = ttrss_prefs_types.id AND
|
WHERE type_id = ttrss_prefs_types.id AND
|
||||||
section_id = ttrss_prefs_sections.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");
|
ORDER BY section_id,short_desc");
|
||||||
|
|
||||||
print "<form action=\"backend.php\" method=\"POST\">";
|
print "<form action=\"backend.php\" method=\"POST\">";
|
||||||
|
|
Loading…
Reference in New Issue