diff options
author | Carlo <carlo@phpbbitalia.net> | 2014-07-15 19:21:41 +0200 |
---|---|---|
committer | Carlo <carlo@phpbbitalia.net> | 2014-07-15 19:21:41 +0200 |
commit | a4972bb338f06c6b7fbeea22869b3c3b106becf7 (patch) | |
tree | 8e1e6040346545a61a5c512eb8536d265798ec54 /phpBB | |
parent | d95d6720bca4591208d34aeed3787db387ec7ebb (diff) | |
download | forums-a4972bb338f06c6b7fbeea22869b3c3b106becf7.tar forums-a4972bb338f06c6b7fbeea22869b3c3b106becf7.tar.gz forums-a4972bb338f06c6b7fbeea22869b3c3b106becf7.tar.bz2 forums-a4972bb338f06c6b7fbeea22869b3c3b106becf7.tar.xz forums-a4972bb338f06c6b7fbeea22869b3c3b106becf7.zip |
[ticket/12685] Replace getParameterOption with hasParameterOption
PHPBB3-12685
Diffstat (limited to 'phpBB')
-rwxr-xr-x | phpBB/bin/phpbbcli.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/bin/phpbbcli.php b/phpBB/bin/phpbbcli.php index 511eca9082..d86ec6d8f8 100755 --- a/phpBB/bin/phpbbcli.php +++ b/phpBB/bin/phpbbcli.php @@ -45,7 +45,7 @@ $phpbb_container_builder->set_dump_container(false); $input = new ArgvInput(); -if ($input->getParameterOption(array('--safe-mode'))) +if ($input->hasParameterOption(array('--safe-mode'))) { $phpbb_container_builder->set_use_extensions(false); $phpbb_container_builder->set_dump_container(false); |