1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/8894] Fix JavaScript-Error and hide Quote-Button on topic review if BBCodes are not allowed.

PHPBB3-8894
This commit is contained in:
Joas Schilling
2010-04-10 19:28:53 +02:00
committed by Nils Adermann
parent 03d50a2e83
commit e3ba934cd7
2 changed files with 2 additions and 2 deletions

View File

@@ -1054,7 +1054,7 @@ function compose_pm($id, $mode, $action)
'S_COMPOSE_PM' => true,
'S_EDIT_POST' => ($action == 'edit'),
'S_SHOW_PM_ICONS' => $s_pm_icons,
'S_BBCODE_ALLOWED' => $bbcode_status,
'S_BBCODE_ALLOWED' => ($bbcode_status) ? 1 : 0,
'S_BBCODE_CHECKED' => ($bbcode_checked) ? ' checked="checked"' : '',
'S_SMILIES_ALLOWED' => $smilies_status,
'S_SMILIES_CHECKED' => ($smilies_checked) ? ' checked="checked"' : '',