1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-24 01:41:28 +00:00

sortable user editor

This commit is contained in:
Andrew Dolgov
2006-08-20 14:54:54 +01:00
parent e161a2cc34
commit 79ec0f2f4c
2 changed files with 13 additions and 6 deletions

View File

@@ -157,7 +157,7 @@ function updateFeedList(sort_key) {
}
function updateUsersList() {
function updateUsersList(sort_key) {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
@@ -168,7 +168,8 @@ function updateUsersList() {
// p_notify("Loading, please wait...");
xmlhttp.open("GET", "backend.php?op=pref-users", true);
xmlhttp.open("GET", "backend.php?op=pref-users&sort="
+ param_escape(sort_key), true);
xmlhttp.onreadystatechange=userlist_callback;
xmlhttp.send(null);