summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/functions.js6
-rw-r--r--js/prefs.js6
2 files changed, 6 insertions, 6 deletions
diff --git a/js/functions.js b/js/functions.js
index a1c393918..9b30bb302 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -296,12 +296,6 @@ function gotoMain() {
document.location.href = "index.php";
}
-function gotoExportOpml(filename, settings) {
- tmp = settings ? 1 : 0;
- document.location.href = "opml.php?op=Export&filename=" + filename + "&settings=" + tmp;
-}
-
-
/** * @(#)isNumeric.js * * Copyright (c) 2000 by Sundar Dorai-Raj
* * @author Sundar Dorai-Raj
* * Email: [email protected]
diff --git a/js/prefs.js b/js/prefs.js
index 0048e09df..ee3657e28 100644
--- a/js/prefs.js
+++ b/js/prefs.js
@@ -2064,4 +2064,10 @@ function dataImportComplete(iframe) {
}
}
+function gotoExportOpml(filename, settings) {
+ tmp = settings ? 1 : 0;
+ document.location.href = "opml.php?op=Export&filename=" + filename + "&settings=" + tmp;
+}
+
+