diff options
author | Jakub Senko <jakubsenko@gmail.com> | 2018-06-18 19:46:37 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-05-09 18:43:34 +0200 |
commit | 9f20ff7b9e998688c06737a546fbcaabd87b22ef (patch) | |
tree | 4bf93b93d6821157d013f19de639b9b75f3761b7 /phpBB/phpbb/help/controller | |
parent | 139eb17bb729763ab670fb239c77db02e29920f6 (diff) | |
download | forums-9f20ff7b9e998688c06737a546fbcaabd87b22ef.tar forums-9f20ff7b9e998688c06737a546fbcaabd87b22ef.tar.gz forums-9f20ff7b9e998688c06737a546fbcaabd87b22ef.tar.bz2 forums-9f20ff7b9e998688c06737a546fbcaabd87b22ef.tar.xz forums-9f20ff7b9e998688c06737a546fbcaabd87b22ef.zip |
[ticket/12591] Improve breadcrumb naming and extend it's usage
PHPBB3-12591
Diffstat (limited to 'phpBB/phpbb/help/controller')
-rw-r--r-- | phpBB/phpbb/help/controller/bbcode.php | 4 | ||||
-rw-r--r-- | phpBB/phpbb/help/controller/faq.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/phpbb/help/controller/bbcode.php b/phpBB/phpbb/help/controller/bbcode.php index c3cf53fd76..560b0c02ce 100644 --- a/phpBB/phpbb/help/controller/bbcode.php +++ b/phpBB/phpbb/help/controller/bbcode.php @@ -26,8 +26,8 @@ class bbcode extends controller $this->language->add_lang('help/bbcode'); $this->template->assign_block_vars('navlinks', array( - 'FORUM_NAME' => $this->language->lang('BBCODE_GUIDE'), - 'U_VIEW_FORUM' => $this->helper->route('phpbb_help_bbcode_controller'), + 'BREADCRUMB_NAME' => $this->language->lang('BBCODE_GUIDE'), + 'U_BREADCRUMB' => $this->helper->route('phpbb_help_bbcode_controller'), )); $this->manager->add_block( diff --git a/phpBB/phpbb/help/controller/faq.php b/phpBB/phpbb/help/controller/faq.php index 117723c793..0f63be5b56 100644 --- a/phpBB/phpbb/help/controller/faq.php +++ b/phpBB/phpbb/help/controller/faq.php @@ -26,8 +26,8 @@ class faq extends controller $this->language->add_lang('help/faq'); $this->template->assign_block_vars('navlinks', array( - 'FORUM_NAME' => $this->language->lang('FAQ_EXPLAIN'), - 'U_VIEW_FORUM' => $this->helper->route('phpbb_help_faq_controller'), + 'BREADCRUMB_NAME' => $this->language->lang('FAQ_EXPLAIN'), + 'U_BREADCRUMB' => $this->helper->route('phpbb_help_faq_controller'), )); $this->manager->add_block( |