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

sortable feed editor

This commit is contained in:
Andrew Dolgov
2005-11-23 11:47:30 +01:00
parent 18837e9f22
commit b83c75451c
2 changed files with 34 additions and 10 deletions

View File

@@ -165,8 +165,7 @@ function notify_callback() {
}
}
function updateFeedList() {
function updateFeedList(sort_key) {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
@@ -177,7 +176,8 @@ function updateFeedList() {
p_notify("Loading, please wait...");
xmlhttp.open("GET", "backend.php?op=pref-feeds", true);
xmlhttp.open("GET", "backend.php?op=pref-feeds" +
"&sort=" + param_escape(sort_key), true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);