|
From: Paul S. O. <ps...@us...> - 2001-12-10 00:17:23
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv5560
Modified Files:
viewforum.php search.php
Log Message:
Added another image name for 'goto post'
Index: viewforum.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/viewforum.php,v
retrieving revision 1.107
retrieving revision 1.108
diff -C2 -r1.107 -r1.108
*** viewforum.php 2001/12/05 00:20:52 1.107
--- viewforum.php 2001/12/10 00:17:20 1.108
***************
*** 432,436 ****
if( ( $replies + 1 ) > $board_config['posts_per_page'] )
{
! $goto_page = " [ <img src=\"" . $images['icon_minipost'] . "\" alt=\"" . $lang['Goto_page'] . "\" title=\"" . $lang['Goto_page'] . "\" />" . $lang['Goto_page'] . ": ";
$times = 1;
--- 432,436 ----
if( ( $replies + 1 ) > $board_config['posts_per_page'] )
{
! $goto_page = " [ <img src=\"" . $images['icon_gotopost'] . "\" alt=\"" . $lang['Goto_page'] . "\" title=\"" . $lang['Goto_page'] . "\" />" . $lang['Goto_page'] . ": ";
$times = 1;
Index: search.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/search.php,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -r1.41 -r1.42
*** search.php 2001/12/05 00:20:51 1.41
--- search.php 2001/12/10 00:17:20 1.42
***************
*** 1019,1023 ****
if( $replies > $board_config['topics_per_page'] )
{
! $goto_page = "[ <img src=\"" . $images['icon_minipost'] . "\" alt=\"" . $lang['Goto_page'] . "\" />" . $lang['Goto_page'] . ": ";
$times = 1;
--- 1019,1023 ----
if( $replies > $board_config['topics_per_page'] )
{
! $goto_page = "[ <img src=\"" . $images['icon_gotopost'] . "\" alt=\"" . $lang['Goto_page'] . "\" />" . $lang['Goto_page'] . ": ";
$times = 1;
|