diff options
| author | Tristan Darricau <github@nicofuma.fr> | 2014-06-13 21:47:35 +0200 |
|---|---|---|
| committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-07-09 09:21:50 +0200 |
| commit | 3924428050d4225c073876bd0e22cf4e9f54138e (patch) | |
| tree | 6371bf4a636245e1f92ad61a8c9c3d0fff1da5b8 /phpBB/phpbb/console/command/thumbnail/recreate.php | |
| parent | 3a0883e93ebd542c1cf67203b4c17456d8308426 (diff) | |
| download | forums-3924428050d4225c073876bd0e22cf4e9f54138e.tar forums-3924428050d4225c073876bd0e22cf4e9f54138e.tar.gz forums-3924428050d4225c073876bd0e22cf4e9f54138e.tar.bz2 forums-3924428050d4225c073876bd0e22cf4e9f54138e.tar.xz forums-3924428050d4225c073876bd0e22cf4e9f54138e.zip | |
[ticket/12692] Use strict comparison in thumbnail:recreate
PHPBB3-12692
Diffstat (limited to 'phpBB/phpbb/console/command/thumbnail/recreate.php')
| -rw-r--r-- | phpBB/phpbb/console/command/thumbnail/recreate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/thumbnail/recreate.php b/phpBB/phpbb/console/command/thumbnail/recreate.php index 71c5d90654..69ea67e410 100644 --- a/phpBB/phpbb/console/command/thumbnail/recreate.php +++ b/phpBB/phpbb/console/command/thumbnail/recreate.php @@ -71,7 +71,7 @@ class recreate extends \phpbb\console\command\command $input_delete = new ArrayInput($parameters); $return = $this->getApplication()->run($input_delete, $output); - if ($return == 0) + if ($return === 0) { $parameters['command'] = 'thumbnail:generate'; |
