aboutsummaryrefslogtreecommitdiffstats
path: root/include/externals.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/externals.php')
-rw-r--r--include/externals.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/externals.php b/include/externals.php
index 3a3a32420..ddf44dc52 100644
--- a/include/externals.php
+++ b/include/externals.php
@@ -5,7 +5,7 @@ require_once('include/cli_startup.php');
require_once('include/zot.php');
require_once('include/identity.php');
-function externals_run($argv, $argc){
+function externals_run($argc,$argv){
cli_startup();
$a = get_app();
@@ -98,6 +98,6 @@ function externals_run($argv, $argc){
}
if (array_search(__file__,get_included_files())===0){
- externals_run($argv,$argc);
+ externals_run($argc,$argv);
killme();
}