summaryrefslogtreecommitdiff
path: root/plugins/import_export
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/import_export')
-rw-r--r--plugins/import_export/init.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/plugins/import_export/init.php b/plugins/import_export/init.php
index 491216e06..ec618b723 100644
--- a/plugins/import_export/init.php
+++ b/plugins/import_export/init.php
@@ -91,6 +91,9 @@ class Import_Export extends Plugin implements IHandler {
return in_array($method, array("exportget"));
}
+ /**
+ * @SuppressWarnings(PHPMD.UnusedFormalParameter)
+ */
function before($method) {
return $_SESSION["uid"] != false;
}
@@ -99,6 +102,9 @@ class Import_Export extends Plugin implements IHandler {
return true;
}
+ /**
+ * @SuppressWarnings(unused)
+ */
function exportget() {
$exportname = CACHE_DIR . "/export/" .
sha1($_SESSION['uid'] . $_SESSION['login']) . ".xml";
@@ -468,5 +474,4 @@ class Import_Export extends Plugin implements IHandler {
return 2;
}
-}
-?>
+} \ No newline at end of file