active_feed = false;
+ notify("");
+
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editSave&id=" +
feed + "&l=" + param_escape(link) + "&t=" + param_escape(title) +
"&ui=" + param_escape(upd_intl) + "&pi=" + param_escape(purge_intl), true);
return;
}
+ notify("");
+
active_label = false;
xmlhttp.open("GET", "backend.php?op=pref-labels&subop=editSave&id=" +
active_user = false;
+ notify("");
+
xmlhttp.open("GET", "backend.php?op=pref-users&subop=editSave&id=" +
user + "&l=" + param_escape(login) + "&al=" + param_escape(level),
true);
- xmlhttp.onreadystatechange=labellist_callback;
+ xmlhttp.onreadystatechange=userlist_callback;
xmlhttp.send(null);
}
xmlhttp.open("GET", "backend.php?op=pref-filters&subop=editSave&id=" +
filter + "&r=" + param_escape(regexp) + "&d=" + param_escape(descr) +
"&m=" + param_escape(v_match), true);
-
+
+ notify("");
+
xmlhttp.onreadystatechange=filterlist_callback;
xmlhttp.send(null);
return;
}
+ notify("");
+
editLabel(rows[0]);
}
return;
}
+ notify("");
+
editUser(rows[0]);
}
var id = rows[0];
+ notify("");
+
xmlhttp.open("GET", "backend.php?op=user-details&id=" + id, true);
xmlhttp.onreadystatechange=infobox_callback;
xmlhttp.send(null);
var id = rows[0];
+ notify("");
+
xmlhttp.open("GET", "backend.php?op=feed-details&id=" + id, true);
xmlhttp.onreadystatechange=infobox_callback;
xmlhttp.send(null);
return;
}
+ notify("");
+
editFilter(rows[0]);
}
return;
}
+ notify("");
+
editFeed(rows[0]);
}