diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/po2php.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/po2php.php b/util/po2php.php index 66807083b..ab8c495f9 100644 --- a/util/po2php.php +++ b/util/po2php.php @@ -1,7 +1,7 @@ <?php -function po2php_run($argv, $argc) { +function po2php_run($argc,$argv) { if ($argc!=2) { print "Usage: ".$argv[0]." <file.po>\n\n"; @@ -140,5 +140,5 @@ function trim_message($str) { } if (array_search(__file__,get_included_files())===0){ - po2php_run($argv,$argc); + po2php_run($argc,$argv); } |