aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2010-09-16 22:34:48 +0200
committerIgor Wiedler <igor@wiedler.ch>2010-09-16 22:34:48 +0200
commit9015e03d053ce84619a1081aaaab0ab9f48acb13 (patch)
tree0578975b12b771cc71f3f4f08ee807f7698b3750 /phpBB/includes/functions.php
parent3465c5e48da02ba37f61081f3b7819a35b49821e (diff)
parentf9764c684ffb147a07cff472c82789b142845481 (diff)
downloadforums-9015e03d053ce84619a1081aaaab0ab9f48acb13.tar
forums-9015e03d053ce84619a1081aaaab0ab9f48acb13.tar.gz
forums-9015e03d053ce84619a1081aaaab0ab9f48acb13.tar.bz2
forums-9015e03d053ce84619a1081aaaab0ab9f48acb13.tar.xz
forums-9015e03d053ce84619a1081aaaab0ab9f48acb13.zip
Merge branch 'ticket/bantu/9613' into develop-olympus
* ticket/bantu/9613: [ticket/9613] Slightly update language strings. [ticket/9613] Fix missing database part for unread posts search load switch. [ticket/9613] Implement a load switch for unread posts search feature.
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 91edddf5d2..9aec98dce2 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -4466,6 +4466,8 @@ function page_header($page_title = '', $display_online_list = true, $item_id = 0
'S_ENABLE_FEEDS_TOPICS_ACTIVE' => ($config['feed_topics_active']) ? true : false,
'S_ENABLE_FEEDS_NEWS' => ($s_feed_news) ? true : false,
+ 'S_LOAD_UNREADS' => ($config['load_unreads_search']) ? true : false,
+
'T_THEME_PATH' => "{$web_path}styles/" . $user->theme['theme_path'] . '/theme',
'T_TEMPLATE_PATH' => "{$web_path}styles/" . $user->theme['template_path'] . '/template',
'T_SUPER_TEMPLATE_PATH' => (isset($user->theme['template_inherit_path']) && $user->theme['template_inherit_path']) ? "{$web_path}styles/" . $user->theme['template_inherit_path'] . '/template' : "{$web_path}styles/" . $user->theme['template_path'] . '/template',