|
From: Paul S. O. <ps...@us...> - 2001-11-21 15:56:16
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv15794/includes
Modified Files:
page_header.php
Log Message:
PM popup and icon are finally in place
Index: page_header.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/page_header.php,v
retrieving revision 1.68
retrieving revision 1.69
diff -C2 -r1.68 -r1.69
*** page_header.php 2001/11/21 13:02:37 1.68
--- page_header.php 2001/11/21 15:56:12 1.69
***************
*** 174,181 ****
--- 174,183 ----
$s_privmsg_new = true;
+ $icon_pm = $images['pm_new_msg'];
}
else
{
$s_privmsg_new = 0;
+ $icon_pm = $images['pm_no_new_msg'];
}
}
***************
*** 185,188 ****
--- 187,191 ----
$s_privmsg_new = 0;
+ $icon_pm = $images['pm_no_new_msg'];
}
***************
*** 220,223 ****
--- 223,241 ----
"LAST_VISIT_DATE" => sprintf($lang['You_last_visit'], $s_last_visit),
+ "PRIVMSG_IMG" => $icon_pm,
+ "FORUM_IMG" => $images['forum'],
+ "FORUM_NEW_IMG" => $images['forum_new'],
+ "FORUM_LOCKED_IMG" => $images['forum_locked'],
+ "FOLDER_IMG" => $images['folder'],
+ "FOLDER_NEW_IMG" => $images['folder_new'],
+ "FOLDER_HOT_IMG" => $images['folder_hot'],
+ "FOLDER_HOT_NEW_IMG" => $images['folder_hot_new'],
+ "FOLDER_LOCKED_IMG" => $images['folder_locked'],
+ "FOLDER_LOCKED_NEW_IMG" => $images['folder_locked_new'],
+ "FOLDER_STICKY_IMG" => $images['folder_sticky'],
+ "FOLDER_STICKY_NEW_IMG" => $images['folder_sticky_new'],
+ "FOLDER_ANNOUNCE_IMG" => $images['folder_announce'],
+ "FOLDER_ANNOUNCE_NEW_IMG" => $images['folder_announce_new'],
+
"L_USERNAME" => $lang['Username'],
"L_PASSWORD" => $lang['Password'],
***************
*** 261,265 ****
"U_REGISTER" => append_sid("profile.".$phpEx."?mode=register"),
"U_PROFILE" => append_sid("profile.".$phpEx."?mode=editprofile"),
! "U_PRIVATEMSGS" => append_sid("privmsg.".$phpEx."?folder=inbox"),
"U_SEARCH" => append_sid("search.".$phpEx),
"U_MEMBERLIST" => append_sid("memberlist.".$phpEx),
--- 279,284 ----
"U_REGISTER" => append_sid("profile.".$phpEx."?mode=register"),
"U_PROFILE" => append_sid("profile.".$phpEx."?mode=editprofile"),
! "U_PRIVATEMSGS" => append_sid("privmsg.".$phpEx."?folder=inbox"),
! "U_PRIVATEMSGS_POPUP" => append_sid("privmsg.".$phpEx."?mode=newpm"),
"U_SEARCH" => append_sid("search.".$phpEx),
"U_MEMBERLIST" => append_sid("memberlist.".$phpEx),
|