diff options
Diffstat (limited to 'install')
-rw-r--r-- | install/testargs.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/testargs.php b/install/testargs.php index a8af836d0..4c9bce4e9 100644 --- a/install/testargs.php +++ b/install/testargs.php @@ -15,7 +15,7 @@ */ -if((argc() > 1) && isset(argv(1))) +if(($argc > 1) && isset($argv[1])) echo $argv[1]; else echo ''; |