From: <dts...@us...> - 2003-06-03 16:23:18
|
Update of /cvsroot/phpwebsite-comm/modules/phpwsbb/conf In directory sc8-pr-cvs1:/tmp/cvs-serv14102/conf Modified Files: manager.php menuman.php Log Message: Updates for adding replies and lastreply fields Index: manager.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/phpwsbb/conf/manager.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** manager.php 23 May 2003 04:09:28 -0000 1.4 --- manager.php 3 Jun 2003 16:22:43 -0000 1.5 *************** *** 14,19 **** $messagesColumns = array( "label"=>$_SESSION["translate"]->it("Subject"), "owner"=>$_SESSION["translate"]->it("Poster"), ! "updated"=>$_SESSION["translate"]->it("Last Post"), ! //"replies"=>$_SESSION["translate"]->it("Replies"), "id"=>NULL, "locked"=>NULL, --- 14,19 ---- $messagesColumns = array( "label"=>$_SESSION["translate"]->it("Subject"), "owner"=>$_SESSION["translate"]->it("Poster"), ! "replies"=>$_SESSION["translate"]->it("Replies"), ! "lastreply"=>$_SESSION["translate"]->it("Last Reply"), "id"=>NULL, "locked"=>NULL, *************** *** 21,25 **** /* The actions to show in the defined "saved" list and their labels */ - /* $messagesActions = array( "view"=>"View", "edit"=>"Edit", --- 21,24 ---- *************** *** 28,36 **** "lock"=>"Lock" ); - */ - $messagesActions = array(); /* The permissions associated with the defined actions above */ - /* $messagesPermissions = array( "view"=>NULL, "edit"=>"edit_messages", --- 27,32 ---- *************** *** 39,44 **** "lock"=>"lock_threads" ); - */ - $messagesPermissions = array(); /* The paging parameters for the list */ --- 35,38 ---- Index: menuman.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/phpwsbb/conf/menuman.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** menuman.php 22 May 2003 02:53:35 -0000 1.1 --- menuman.php 3 Jun 2003 16:22:43 -0000 1.2 *************** *** 4,7 **** * @author Don Seiler <do...@NO...> */ ! $link[$_SESSION['translate']->it("Bulletin Board")] = "index.php?module=phpwsbb&PHPWSBB_MAN_op=list"; ?> --- 4,7 ---- * @author Don Seiler <do...@NO...> */ ! $link[$_SESSION['translate']->it("Bulletin Board")] = "index.php?module=phpwsbb&PHPWSBB_MAN_OP=list"; ?> |