Update of /cvsroot/phpwsbb/phpwsbb/class
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3017/class
Modified Files:
Message.php Thread.php
Log Message:
Some cleanup
Index: Thread.php
===================================================================
RCS file: /cvsroot/phpwsbb/phpwsbb/class/Thread.php,v
retrieving revision 1.53
retrieving revision 1.54
diff -C2 -d -r1.53 -r1.54
*** Thread.php 13 Sep 2004 18:17:21 -0000 1.53
--- Thread.php 13 Sep 2004 19:41:45 -0000 1.54
***************
*** 494,498 ****
if ($GLOBALS["core"]->sqlInsert($data, "mod_phpwsbb_monitors", TRUE, FALSE, FALSE, FALSE)) {
$GLOBALS["CNT_phpwsbb"]["content"] .= $_SESSION["translate"]->it("You are now monitoring the topic \"[var1]\" and will be emailed when there is a new reply.", $this->getLabel());
! $GLOBALS["CNT_phpwsbb"]["content"] .= "<br /><a href=\"http://" . PHPWS_HOME_HTTP . "index.php?module=phpwsbb&PHPWSBB_MAN_OP=view&PHPWS_MAN_ITEMS[]=" . $this->getId() . "\">" . $_SESSION["translate"]->it("Back to the topic.") . "</a>";
$this->monitored = TRUE;
} else {
--- 494,498 ----
if ($GLOBALS["core"]->sqlInsert($data, "mod_phpwsbb_monitors", TRUE, FALSE, FALSE, FALSE)) {
$GLOBALS["CNT_phpwsbb"]["content"] .= $_SESSION["translate"]->it("You are now monitoring the topic \"[var1]\" and will be emailed when there is a new reply.", $this->getLabel());
! $GLOBALS["CNT_phpwsbb"]["content"] .= "<br /><a href=\"http://" . PHPWS_HOME_HTTP . "index.php?module=phpwsbb&PHPWSBB_MAN_OP=view&PHPWS_MAN_ITEMS[]=" . $this->getId() . "\">" . $_SESSION["translate"]->it("Back to the topic.") . "</a>";
$this->monitored = TRUE;
} else {
Index: Message.php
===================================================================
RCS file: /cvsroot/phpwsbb/phpwsbb/class/Message.php,v
retrieving revision 1.60
retrieving revision 1.61
diff -C2 -d -r1.60 -r1.61
*** Message.php 13 Sep 2004 18:17:21 -0000 1.60
--- Message.php 13 Sep 2004 19:41:45 -0000 1.61
***************
*** 470,474 ****
}
! $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";
}
--- 470,474 ----
}
! $GLOBALS["CNT_phpwsbb"]["content"] .= "<br /><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";
}
|