mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-25 03:18:52 +00:00
[ticket/11566] Remove extra pair of brackets from conditional statement
PHPBB3-11566
This commit is contained in:
parent
84ec1f5423
commit
d4645575fd
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue