aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/includes/page_header.php7
-rw-r--r--phpBB/index.php6
2 files changed, 6 insertions, 7 deletions
diff --git a/phpBB/includes/page_header.php b/phpBB/includes/page_header.php
index 910e9bb04d..b93eee0f5c 100644
--- a/phpBB/includes/page_header.php
+++ b/phpBB/includes/page_header.php
@@ -292,9 +292,14 @@ $template->assign_vars(array(
"L_AUTO_LOGIN" => $lang['Log_me_in'],
"L_AUTHOR" => $lang['Author'],
"L_MESSAGE" => $lang['Message'],
- "L_BY" => $lang['by'],
"L_LOGIN_LOGOUT" => $l_login_logout,
+ "L_SEARCH_NEW" => $lang['Search_new'],
+ "L_SEARCH_UNANSWERED" => $lang['Search_unanswered'],
+ "L_SEARCH_SELF" => $lang['Search_your_posts'],
+ "U_SEARCH_UNANSWERED" => append_sid("search.".$phpEx."?search_id=unanswered"),
+ "U_SEARCH_SELF" => append_sid("search.".$phpEx."?search_id=egosearch"),
+ "U_SEARCH_NEW" => append_sid("search.$phpEx?search_id=newposts"),
"U_INDEX" => append_sid("index.".$phpEx),
"U_REGISTER" => append_sid("profile.".$phpEx."?mode=register"),
"U_PROFILE" => append_sid("profile.".$phpEx."?mode=editprofile"),
diff --git a/phpBB/index.php b/phpBB/index.php
index b19839314c..c722676d02 100644
--- a/phpBB/index.php
+++ b/phpBB/index.php
@@ -238,13 +238,7 @@ if($total_categories = $db->sql_numrows($q_categories))
"L_FORUM_LOCKED" => $lang['Forum_is_locked'],
"L_MARK_FORUMS_READ" => $lang['Mark_all_forums'],
- "L_SEARCH_NEW" => $lang['Search_new'],
- "L_SEARCH_UNANSWERED" => $lang['Search_unanswered'],
- "L_SEARCH_SELF" => $lang['Search_your_posts'],
- "U_SEARCH_UNANSWERED" => append_sid("search.".$phpEx."?search_id=unanswered"),
- "U_SEARCH_SELF" => append_sid("search.".$phpEx."?search_id=egosearch"),
- "U_SEARCH_NEW" => append_sid("search.$phpEx?search_id=newposts"),
"U_MARK_READ" => append_sid("index.$phpEx?mark=forums"))
);