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

[ticket/12364] Add template identifier var to all missing pages

PHPBB3-12364
This commit is contained in:
PayBas
2014-04-06 17:41:09 +02:00
parent 0e88f0db4a
commit 66dad8d2fb
6 changed files with 12 additions and 4 deletions

View File

@@ -301,8 +301,9 @@ $template->assign_vars(array(
'S_HIDDEN_FIELDS' => (sizeof($s_hidden_fields)) ? $s_hidden_fields : null,
'S_NOTIFY' => $user_notify,
'S_CAN_NOTIFY' => ($user->data['is_registered']) ? true : false)
);
'S_CAN_NOTIFY' => ($user->data['is_registered']) ? true : false,
'S_IN_REPORT' => true,
));
generate_forum_nav($forum_data);