From: <dts...@us...> - 2003-05-23 04:09:31
|
Update of /cvsroot/phpwebsite-comm/modules/phpwsbb/conf In directory sc8-pr-cvs1:/tmp/cvs-serv19373/conf Modified Files: manager.php Log Message: Updates Index: manager.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/phpwsbb/conf/manager.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** manager.php 22 May 2003 02:53:35 -0000 1.3 --- manager.php 23 May 2003 04:09:28 -0000 1.4 *************** *** 14,21 **** $messagesColumns = array( "label"=>$_SESSION["translate"]->it("Subject"), "owner"=>$_SESSION["translate"]->it("Poster"), ! "created"=>$_SESSION["translate"]->it("Posted On") ! ); /* The actions to show in the defined "saved" list and their labels */ $messagesActions = array( "view"=>"View", "edit"=>"Edit", --- 14,25 ---- $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, ! "sticky"=>NULL ); /* The actions to show in the defined "saved" list and their labels */ + /* $messagesActions = array( "view"=>"View", "edit"=>"Edit", *************** *** 24,29 **** --- 28,36 ---- "lock"=>"Lock" ); + */ + $messagesActions = array(); /* The permissions associated with the defined actions above */ + /* $messagesPermissions = array( "view"=>NULL, "edit"=>"edit_messages", *************** *** 32,35 **** --- 39,44 ---- "lock"=>"lock_threads" ); + */ + $messagesPermissions = array(); /* The paging parameters for the list */ |