]> git.wh0rd.org - tt-rss.git/blobdiff - functions.js
ldap auth: support LDAP extra attributes (closes #363)
[tt-rss.git] / functions.js
index 335ed61ec897a9357f51fb379f54c408b9b4d643..e8bd6af3399c495d97f3d99771ae7872be20ea35 100644 (file)
@@ -277,8 +277,9 @@ function gotoMain() {
        document.location.href = "tt-rss.php";
 }
 
-function gotoExportOpml() {
-       document.location.href = "opml.php?op=Export";
+function gotoExportOpml(filename, settings) {
+    tmp = settings ? 1 : 0;
+       document.location.href = "opml.php?op=Export&filename=" + filename + "&settings=" + tmp;
 }