|
From: James A. <th...@us...> - 2001-11-14 06:37:08
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv19240/includes
Modified Files:
page_header.php
Log Message:
Implemented Bart's 'egosearch', and the search for unanswered posts.
Created links that are accessable from anywhere
Index: page_header.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/page_header.php,v
retrieving revision 1.59
retrieving revision 1.60
diff -C2 -r1.59 -r1.60
*** page_header.php 2001/11/04 12:55:22 1.59
--- page_header.php 2001/11/14 06:37:05 1.60
***************
*** 232,235 ****
--- 232,236 ----
"L_LOGIN_LOGOUT" => $l_login_logout,
"L_LAST_VISIT" => $lang['You_last_visit'],
+ "L_SEARCH_UNANSWERED" => $lang['Search_unanswered'],
"U_INDEX" => append_sid("index.".$phpEx),
***************
*** 244,248 ****
--- 245,251 ----
"U_MEMBERSLIST" => append_sid("memberlist.".$phpEx),
"U_GROUP_CP" => append_sid("groupcp.".$phpEx),
+ "U_SEARCH_UNANSWERED" => append_sid("search.".$phpEx."?search_id=unanswered"),
+
"S_CONTENT_DIRECTION" => $lang['DIRECTION'],
"S_CONTENT_ENCODING" => $lang['ENCODING'],
***************
*** 293,296 ****
--- 296,300 ----
);
+
//
// Login box?
***************
*** 303,306 ****
--- 307,319 ----
{
$template->assign_block_vars("switch_user_logged_in", array());
+ //
+ // Bart's quick ego search
+ //
+ $template->assign_block_vars("egosearch", array(
+ "L_SEARCH_SELF" => $lang['Search_your_posts'],
+ "U_SEARCH_SELF" => append_sid("search.".$phpEx."?search_id=egosearch"))
+ );
+
+
}
|