1
0
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:
Dhruv 2013-07-01 15:23:45 +05:30
parent 84ec1f5423
commit d4645575fd

View File

@ -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,