summaryrefslogtreecommitdiff
path: root/plugins/import_export/import_export.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/import_export/import_export.php')
-rw-r--r--plugins/import_export/import_export.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/import_export/import_export.php b/plugins/import_export/import_export.php
index 68597978b..823976565 100644
--- a/plugins/import_export/import_export.php
+++ b/plugins/import_export/import_export.php
@@ -4,7 +4,7 @@ class Import_Export extends Plugin implements IHandler {
private $link;
private $host;
- function __construct($host) {
+ function init($host) {
$this->link = $host->get_link();
$this->host = $host;
@@ -12,7 +12,7 @@ class Import_Export extends Plugin implements IHandler {
$host->add_command("xml-import", "USER FILE: import articles from XML", $this);
}
- function _about() {
+ function about() {
return array(1.0,
"Imports and exports user data using a neutral XML format",
"fox");