summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-09-14 12:30:04 +0400
committerAndrew Dolgov <[email protected]>2012-09-14 12:30:04 +0400
commitbc6fa2364b35ed33b058cfc99026789fcbc5135d (patch)
tree82edfe31c5de601ae15486195584e538654ea4de /js
parent72d0e9b33f8f83969d738d71029ce272336b9cee (diff)
move inactiveFeeds and feedsWithErrors to pref-feeds; fix element id collisions
Diffstat (limited to 'js')
-rw-r--r--js/functions.js2
-rw-r--r--js/prefs.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/js/functions.js b/js/functions.js
index 02aeb454f..97df318e5 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -1751,7 +1751,7 @@ function feedBrowser() {
function showFeedsWithErrors() {
try {
- var query = "backend.php?op=dlg&method=feedsWithErrors";
+ var query = "backend.php?op=pref-feeds&method=feedsWithErrors";
if (dijit.byId("errorFeedsDlg"))
dijit.byId("errorFeedsDlg").destroyRecursive();
diff --git a/js/prefs.js b/js/prefs.js
index 91d1e2783..ded6c3459 100644
--- a/js/prefs.js
+++ b/js/prefs.js
@@ -1296,7 +1296,7 @@ function createCategory() {
function showInactiveFeeds() {
try {
- var query = "backend.php?op=dlg&method=inactiveFeeds";
+ var query = "backend.php?op=pref-feeds&method=inactiveFeeds";
if (dijit.byId("inactiveFeedsDlg"))
dijit.byId("inactiveFeedsDlg").destroyRecursive();