summaryrefslogtreecommitdiff
path: root/plugins/import_export/init.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/import_export/init.php')
-rwxr-xr-xplugins/import_export/init.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/import_export/init.php b/plugins/import_export/init.php
index a3413f307..ef1e2db65 100755
--- a/plugins/import_export/init.php
+++ b/plugins/import_export/init.php
@@ -24,11 +24,11 @@ class Import_Export extends Plugin implements IHandler {
return;
}
- _debug("please enter your username:");
+ Debug::log("please enter your username:");
$username = trim(read_stdin());
- _debug("importing $filename for user $username...\n");
+ Debug::log("importing $filename for user $username...\n");
$sth = $this->pdo->prepare("SELECT id FROM ttrss_users WHERE login = ?");
$sth->execute($username);