diff --git a/plugins/importexport/users/UserImportExportPlugin.inc.php b/plugins/importexport/users/UserImportExportPlugin.inc.php index b9c252872d5..4574da22cc5 100644 --- a/plugins/importexport/users/UserImportExportPlugin.inc.php +++ b/plugins/importexport/users/UserImportExportPlugin.inc.php @@ -75,15 +75,15 @@ function executeCLI($scriptName, &$args) { switch ($command) { case 'import': - $this->importUsers(file_get_contents($xmlFile), $journal, null, null); + $this->importUsers(file_get_contents($xmlFile), $journal, null); return; case 'export': if ($xmlFile != '') { if (empty($args)) { - file_put_contents($xmlFile, $this->exportAllUsers($journal, null, null)); + file_put_contents($xmlFile, $this->exportAllUsers($journal, null)); return; } else { - file_put_contents($xmlFile, $this->exportUsers($args, $journal, null, null)); + file_put_contents($xmlFile, $this->exportUsers($args, $journal, null)); return; } }