From: <dts...@us...> - 2003-05-22 03:01:14
|
Update of /cvsroot/phpwebsite-comm/modules/phpwsbb/class In directory sc8-pr-cvs1:/tmp/cvs-serv13892/class Modified Files: Manager.php Message.php Log Message: Getting lists working Index: Manager.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/phpwsbb/class/Manager.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Manager.php 21 May 2003 15:54:12 -0000 1.3 --- Manager.php 22 May 2003 02:53:34 -0000 1.4 *************** *** 26,30 **** $GLOBALS["CNT_phpwsbb"]["content"] .= "<div align=\"right\">" . implode(" | ", $links) . "</div><br />"; ! $GLOBALS["CNT_phpwsbb"]["content"] .= $this->getList("messages", $_SESSION["translate"]->it("Bulletin Board Messages")); }// END FUNC _list --- 26,30 ---- $GLOBALS["CNT_phpwsbb"]["content"] .= "<div align=\"right\">" . implode(" | ", $links) . "</div><br />"; ! $GLOBALS["CNT_phpwsbb"]["content"] .= $this->getList("messages", $_SESSION["translate"]->it("Bulletin Board Messages"), FALSE); }// END FUNC _list *************** *** 53,56 **** --- 53,61 ---- function action() { switch($_REQUEST["PHPWSBB_MAN_OP"]) { + /* + case "list": + $content = $this->_list(); + break; + */ case "new": $content = $this->_new(); Index: Message.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/phpwsbb/class/Message.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Message.php 21 May 2003 21:56:23 -0000 1.4 --- Message.php 22 May 2003 02:53:34 -0000 1.5 *************** *** 11,14 **** --- 11,15 ---- var $_guestemail = NULL; var $_body = NULL; + var $_sticky = 0; function PHPWSBB_Message($MESSAGE_ID = NULL) { |