|
From: Andreas K. <la...@us...> - 2003-05-10 09:08:26
|
Update of /cvsroot/pn-modules/PN_phpBB_14/html/modules/phpBB_14
In directory sc8-pr-cvs1:/tmp/cvs-serv6238/PN_phpBB_14/html/modules/phpBB_14
Modified Files:
latest.php
Log Message:
fixes for short urls
Index: latest.php
===================================================================
RCS file: /cvsroot/pn-modules/PN_phpBB_14/html/modules/phpBB_14/latest.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** latest.php 18 Jan 2003 16:24:45 -0000 1.14
--- latest.php 10 May 2003 09:08:23 -0000 1.15
***************
*** 158,169 ****
<tr BGCOLOR="<?php echo $GLOBALS['bgcolor3']?>">
<TD align="center">
! [ <a href="modules.php?op=modload&name=<?php echo $ModName ?>&file=latest&selorder=3"><?php echo _PHPBB_YESTERDAY; ?></a> ]
! [ <a href="modules.php?op=modload&name=<?php echo $ModName ?>&file=latest&selorder=2"><?php echo _PHPBB_TODAY; ?></a> ]
! [ <a href="modules.php?op=modload&name=<?php echo $ModName ?>&file=latest&selorder=1"><?php echo _PHPBB_LAST24; ?></a> ]
[ <a href="javascript:func_name()"><?php echo _PHPBB_LAST; ?></a> <input type="text" name="nohours" size="3" value="<?php echo $nohours; ?>" maxlength="3"> <a href="javascript:func_name()"><?php echo _PHPBB_HOURS; ?></a> ]
<br />
! [ <a href="modules.php?op=modload&name=<?php echo $ModName ?>&file=latest&selorder=4"><?php echo _PHPBB_LASTWEEK; ?></a> ]
! [ <a href="modules.php?op=modload&name=<?php echo $ModName ?>&file=latest&selorder=4&unanswered=1"><?php echo _PHPBB_UALASTWEEK; ?></a> ]
! [ <a href="modules.php?op=modload&name=<?php echo $ModName ?>&file=latest&selorder=6"><?php echo _PHPBB_LASTVISIT; ?></a> ]
</td>
</tr>
--- 158,169 ----
<tr BGCOLOR="<?php echo $GLOBALS['bgcolor3']?>">
<TD align="center">
! [ <a href="modules.php?op=modload&name=<?php echo $ModName ?>&file=index&action=latest&selorder=3"><?php echo _PHPBB_YESTERDAY; ?></a> ]
! [ <a href="modules.php?op=modload&name=<?php echo $ModName ?>&file=index&action=latest&selorder=2"><?php echo _PHPBB_TODAY; ?></a> ]
! [ <a href="modules.php?op=modload&name=<?php echo $ModName ?>&file=index&action=latest&selorder=1"><?php echo _PHPBB_LAST24; ?></a> ]
[ <a href="javascript:func_name()"><?php echo _PHPBB_LAST; ?></a> <input type="text" name="nohours" size="3" value="<?php echo $nohours; ?>" maxlength="3"> <a href="javascript:func_name()"><?php echo _PHPBB_HOURS; ?></a> ]
<br />
! [ <a href="modules.php?op=modload&name=<?php echo $ModName ?>&file=index&action=latest&selorder=4"><?php echo _PHPBB_LASTWEEK; ?></a> ]
! [ <a href="modules.php?op=modload&name=<?php echo $ModName ?>&file=index&action=latest&selorder=4&unanswered=1"><?php echo _PHPBB_UALASTWEEK; ?></a> ]
! [ <a href="modules.php?op=modload&name=<?php echo $ModName ?>&file=index&action=latest&selorder=6"><?php echo _PHPBB_LASTVISIT; ?></a> ]
</td>
</tr>
***************
*** 215,220 ****
echo "<TR BGCOLOR=\"".$GLOBALS['bgcolor3']."\">\n";
! echo "<TD WIDTH=\"50%\" onMouseOver=\"this.style.backgroundColor='".$GLOBALS['bgcolor4']."';\" onMouseOut=\"this.style.backgroundColor='".$GLOBALS['bgcolor3']."'\"><a href=\"modules.php?op=modload&name=$ModName&file=index&action=viewtopic&topic=$topic_id&forum=$forum_id&start=$start\" title=\"$forum_name :: $cat_title\">$topic_title</a></TD>\n";
! echo "<td>$topic_replies</td>\n";
echo $last_boardpost;
echo "</TR>\n";
--- 215,221 ----
echo "<TR BGCOLOR=\"".$GLOBALS['bgcolor3']."\">\n";
! //echo "<TD WIDTH=\"50%\" onMouseOver=\"this.style.backgroundColor='".$GLOBALS['bgcolor4']."';\" onMouseOut=\"this.style.backgroundColor='".$GLOBALS['bgcolor3']."'\"><a href=\"modules.php?op=modload&name=$ModName&file=index&action=viewtopic&topic=$topic_id&forum=$forum_id&start=$start\" title=\"$forum_name :: $cat_title\">$topic_title</a></TD>\n";
! echo "<TD WIDTH=\"50%\" onMouseOver=\"this.style.backgroundColor='".$GLOBALS['bgcolor4']."';\" onMouseOut=\"this.style.backgroundColor='".$GLOBALS['bgcolor3']."'\"><a href=\"modules.php?op=modload&name=$ModName&file=index&action=viewtopic&topic=$topic_id&start=$start\" title=\"$forum_name :: $cat_title\">$topic_title</a></TD>\n";
! echo "<td>$topic_replies</td>\n";
echo $last_boardpost;
echo "</TR>\n";
|