diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2015-02-22 22:44:50 +0100 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2015-02-22 22:44:50 +0100 |
| commit | 19a236205f6e0892be4301b422f5da7479e12941 (patch) | |
| tree | d70c1aafc0f3378c5bcb00ea063d19b284738144 /phpBB/includes/acp/acp_contact.php | |
| parent | 9bd6535a7df400e73d6f6d69d2b4b1a5d5714bcd (diff) | |
| download | forums-19a236205f6e0892be4301b422f5da7479e12941.tar forums-19a236205f6e0892be4301b422f5da7479e12941.tar.gz forums-19a236205f6e0892be4301b422f5da7479e12941.tar.bz2 forums-19a236205f6e0892be4301b422f5da7479e12941.tar.xz forums-19a236205f6e0892be4301b422f5da7479e12941.zip | |
[ticket/13647] Generate route links for faq
PHPBB3-13647
Diffstat (limited to 'phpBB/includes/acp/acp_contact.php')
| -rw-r--r-- | phpBB/includes/acp/acp_contact.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_contact.php b/phpBB/includes/acp/acp_contact.php index 2aa6620835..945add66a4 100644 --- a/phpBB/includes/acp/acp_contact.php +++ b/phpBB/includes/acp/acp_contact.php @@ -105,6 +105,9 @@ class acp_contact $contact_admin_edit = generate_text_for_edit($contact_admin_info, $contact_admin_info_uid, $contact_admin_info_flags); + /** @var \phpbb\controller\helper $controller_helper */ + $controller_helper = $phpbb_container->get('controller.helper'); + $template->assign_vars(array( 'ERRORS' => $error, 'CONTACT_ENABLED' => $config['contact_admin_form_enable'], @@ -116,7 +119,7 @@ class acp_contact 'S_SMILIES_DISABLE_CHECKED' => !$contact_admin_edit['allow_smilies'], 'S_MAGIC_URL_DISABLE_CHECKED' => !$contact_admin_edit['allow_urls'], - 'BBCODE_STATUS' => $user->lang('BBCODE_IS_ON', '<a href="' . append_sid("{$phpbb_root_path}faq.$phpEx", 'mode=bbcode') . '">', '</a>'), + 'BBCODE_STATUS' => $user->lang('BBCODE_IS_ON', '<a href="' . $controller_helper->route('phpbb_help_controller', array('mode' => 'bbcode')) . '">', '</a>'), 'SMILIES_STATUS' => $user->lang['SMILIES_ARE_ON'], 'IMG_STATUS' => $user->lang['IMAGES_ARE_ON'], 'FLASH_STATUS' => $user->lang['FLASH_IS_ON'], |
