summaryrefslogtreecommitdiff
path: root/js/viewfeed.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/viewfeed.js')
-rwxr-xr-xjs/viewfeed.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/viewfeed.js b/js/viewfeed.js
index 925d71379..0c15a23b9 100755
--- a/js/viewfeed.js
+++ b/js/viewfeed.js
@@ -1024,7 +1024,7 @@ function editArticleTags(id) {
if (dijit.byId("editTagsDlg"))
dijit.byId("editTagsDlg").destroyRecursive();
- dialog = new dijit.Dialog({
+ var dialog = new dijit.Dialog({
id: "editTagsDlg",
title: __("Edit article Tags"),
style: "width: 600px",
@@ -1259,7 +1259,7 @@ function catchupBatchedArticles() {
_catchup_request_sent = false;
- reply = JSON.parse(transport.responseText);
+ var reply = JSON.parse(transport.responseText);
var batch = reply.ids;
batch.each(function (id) {