mirror of
https://github.com/phpbb/phpbb.git
synced 2025-04-20 07:42:09 +02:00
[ticket/11566] Remove extra pair of brackets from conditional statement
PHPBB3-11566
This commit is contained in:
parent
84ec1f5423
commit
d4645575fd
@ -252,7 +252,7 @@ display_reasons($reason_id);
|
||||
|
||||
$page_title = ($pm_id) ? $user->lang['REPORT_MESSAGE'] : $user->lang['REPORT_POST'];
|
||||
|
||||
if ((isset($captcha) && $captcha->is_solved() === false))
|
||||
if (isset($captcha) && $captcha->is_solved() === false)
|
||||
{
|
||||
$template->assign_vars(array(
|
||||
'S_CONFIRM_CODE' => true,
|
||||
|
Loading…
x
Reference in New Issue
Block a user