From: Don S. <ri...@us...> - 2004-04-02 20:52:02
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5772/class Modified Files: Message.php Log Message: Fixing hard-coded threadid, thanks danabu Index: Message.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Message.php,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** Message.php 2 Apr 2004 16:54:47 -0000 1.51 --- Message.php 2 Apr 2004 20:39:50 -0000 1.52 *************** *** 414,418 **** } ! $GLOBALS["CNT_phpwsbb"]["content"] .= "<a href=\"./index.php?module=phpwsbb&PHPWSBB_MAN_OP=view&PHPWS_MAN_ITEMS[]=5\">" . $_SESSION["translate"]->it("Back to the topic.") . "</a><br />\n"; } --- 414,418 ---- } ! $GLOBALS["CNT_phpwsbb"]["content"] .= "<a href=\"./index.php?module=phpwsbb&PHPWSBB_MAN_OP=view&PHPWS_MAN_ITEMS[]=" . $thread->getId() . "\">" . $_SESSION["translate"]->it("Back to the topic.") . "</a><br />\n"; } |