diff options
author | PayBas <contact@paybas.com> | 2014-04-06 17:41:09 +0200 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2014-04-06 17:41:09 +0200 |
commit | 66dad8d2fbc5820de0b31c4f9953ce5ce218cae9 (patch) | |
tree | f1d0b9c98ec068cb6eaefc9abc6281d0d07f19d2 /phpBB/index.php | |
parent | 0e88f0db4ad728ed071f42301ee7196c8bf1c2ab (diff) | |
download | forums-66dad8d2fbc5820de0b31c4f9953ce5ce218cae9.tar forums-66dad8d2fbc5820de0b31c4f9953ce5ce218cae9.tar.gz forums-66dad8d2fbc5820de0b31c4f9953ce5ce218cae9.tar.bz2 forums-66dad8d2fbc5820de0b31c4f9953ce5ce218cae9.tar.xz forums-66dad8d2fbc5820de0b31c4f9953ce5ce218cae9.zip |
[ticket/12364] Add template identifier var to all missing pages
PHPBB3-12364
Diffstat (limited to 'phpBB/index.php')
-rw-r--r-- | phpBB/index.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/index.php b/phpBB/index.php index 49baf33392..32bc118e8c 100644 --- a/phpBB/index.php +++ b/phpBB/index.php @@ -175,6 +175,7 @@ $template->assign_vars(array( 'S_LOGIN_ACTION' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=login'), 'U_SEND_PASSWORD' => ($config['email_enable']) ? append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=sendpassword') : '', 'S_DISPLAY_BIRTHDAY_LIST' => ($config['load_birthdays']) ? true : false, + 'S_INDEX' => true, 'U_MARK_FORUMS' => ($user->data['is_registered'] || $config['load_anon_lastread']) ? append_sid("{$phpbb_root_path}index.$phpEx", 'hash=' . generate_link_hash('global') . '&mark=forums&mark_time=' . time()) : '', 'U_MCP' => ($auth->acl_get('m_') || $auth->acl_getf_global('m_')) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=main&mode=front', true, $user->session_id) : '') |