gotoExportOpml: js strict mode fix

This commit is contained in:
Andrew Dolgov 2018-03-16 15:50:48 +03:00
parent 16325f7455
commit d195c6a62e
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}