Browse Source

gotoExportOpml: js strict mode fix

Andrew Dolgov 6 years ago
parent
commit
d195c6a62e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      js/prefs.js

+ 1 - 1
js/prefs.js

@@ -1441,7 +1441,7 @@ function insertSSLserial(value) {
 }
 
 function gotoExportOpml(filename, settings) {
-	tmp = settings ? 1 : 0;
+	var tmp = settings ? 1 : 0;
 	document.location.href = "backend.php?op=opml&method=export&filename=" + filename + "&settings=" + tmp;
 }