1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 18:35:57 +00:00

feed details enabled for several selected feeds

This commit is contained in:
Andrew Dolgov
2005-12-11 08:42:49 +01:00
parent f42e94357e
commit df268d47ec
2 changed files with 99 additions and 92 deletions

View File

@@ -1000,16 +1000,17 @@ function selectedFeedDetails() {
return;
}
if (rows.length > 1) {
notify("Please select one feed.");
return;
}
// if (rows.length > 1) {
// notify("Please select one feed.");
// return;
// }
var id = rows[0];
// var id = rows[0];
notify("");
xmlhttp.open("GET", "backend.php?op=feed-details&id=" + id, true);
xmlhttp.open("GET", "backend.php?op=feed-details&id=" +
param_escape(rows.toString()), true);
xmlhttp.onreadystatechange=infobox_callback;
xmlhttp.send(null);