diff options
author | redmatrix <git@macgirvin.com> | 2016-05-17 19:49:21 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-17 19:49:21 -0700 |
commit | 43c2b22fca908cb5c7bb740855cbd9d04e085d62 (patch) | |
tree | 564b44ee9b2850f3299494bf0dfaf528d90a9501 /include/importdoc.php | |
parent | 9a64c6b9f79a032e192eac31be10017bf8f5fa18 (diff) | |
download | volse-hubzilla-43c2b22fca908cb5c7bb740855cbd9d04e085d62.tar.gz volse-hubzilla-43c2b22fca908cb5c7bb740855cbd9d04e085d62.tar.bz2 volse-hubzilla-43c2b22fca908cb5c7bb740855cbd9d04e085d62.zip |
cli utilities - argc and argv reversed. Not functionally incorrect since it was consistent but aesthetically incorrect.
Diffstat (limited to 'include/importdoc.php')
-rwxr-xr-x | include/importdoc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/importdoc.php b/include/importdoc.php index 90dfb2fc4..7c65037d3 100755 --- a/include/importdoc.php +++ b/include/importdoc.php @@ -5,7 +5,7 @@ require_once('include/cli_startup.php'); -function importdoc_run($argv, $argc){ +function importdoc_run($argc,$argv){ cli_startup(); @@ -16,7 +16,7 @@ function importdoc_run($argv, $argc){ } if (array_search(__file__,get_included_files())===0){ - importdoc_run($argv,$argc); + importdoc_run($argc,$argv); killme(); } |