gotoExportOpml: js strict mode fix

This commit is contained in:
Andrew Dolgov 2018-03-16 15:50:48 +03:00
parent 16325f7455
commit d195c6a62e

View file

@ -1441,7 +1441,7 @@ function insertSSLserial(value) {
} }
function gotoExportOpml(filename, settings) { 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; document.location.href = "backend.php?op=opml&method=export&filename=" + filename + "&settings=" + tmp;
} }