|
From: Bart v. B. <ba...@us...> - 2001-12-15 01:55:46
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv25593
Modified Files:
viewtopic.php
Log Message:
Fixed some language strings, added some handy things to viewtopic
Index: viewtopic.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/viewtopic.php,v
retrieving revision 1.150
retrieving revision 1.151
diff -C2 -r1.150 -r1.151
*** viewtopic.php 2001/12/14 02:39:44 1.150
--- viewtopic.php 2001/12/15 01:55:43 1.151
***************
*** 574,577 ****
--- 574,579 ----
"L_POST_REPLY_TOPIC" => $reply_alt,
+ "L_BACK_TO_TOP" => $lang['Back_to_top'],
+
"IMG_POST" => $post_img,
"IMG_REPLY" => $reply_img,
***************
*** 778,781 ****
--- 780,785 ----
$mini_post_img = '<img src="' . $images['icon_minipost'] . '" alt="' . $lang['Post'] . '" title="' . $lang['Post'] . '" border="0" />';
}
+
+ $mini_post_url = append_sid("viewtopic.$phpEx?" . POST_POST_URL . "=" . $postrow[$i]['post_id']) ."#".$postrow[$i]['post_id'];
//
***************
*** 1068,1071 ****
--- 1072,1077 ----
"IP_IMG" => $ip_img,
"DELETE_IMG" => $delpost_img,
+
+ "U_MINI_POST" => $mini_post_url,
"U_POST_ID" => $postrow[$i]['post_id'])
|