1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/14573] Add UCP breadcrumbs

PHPBB3-14573
This commit is contained in:
Jakub Senko
2016-08-15 17:34:33 +02:00
committed by Marc Alexander
parent 571a6df993
commit 4e3ac92d05
2 changed files with 13 additions and 0 deletions

View File

@@ -933,6 +933,14 @@ class p_master
'U_TITLE' => $u_title
);
if (isset($this->module_cache['parents'][$item_ary['id']]) || $item_ary['id'] == $this->p_id)
{
$template->assign_block_vars('navlinks', array(
'FORUM_NAME' => $item_ary['lang'],
'U_VIEW_FORUM' => $u_title,
));
}
$template->assign_block_vars($use_tabular_offset, array_merge($tpl_ary, array_change_key_case($item_ary, CASE_UPPER)));
}