From: <gbr...@us...> - 2003-08-02 00:04:12
|
Update of /cvsroot/phpwebsite-comm/modules/staffman/conf In directory sc8-pr-cvs1:/tmp/cvs-serv12007/conf Modified Files: boost.php Log Message: removing unused variables from conf/boost.php Index: boost.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/staffman/conf/boost.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** boost.php 1 Aug 2003 00:22:00 -0000 1.3 --- boost.php 2 Aug 2003 00:04:06 -0000 1.4 *************** *** 16,23 **** /* Initial access file for module */ $mod_filename = "index.php"; - /* Opcode for admin entry ? */ - $admin_op = "&STAFF_MAN_op=list"; //& required to avoid XHTML errors - /* Opcode for user entry */ - $user_op = "&STAFF_MAN_op=list"; /* Who can view the list */ $allow_view = "all"; --- 16,19 ---- *************** *** 25,30 **** /* Icon user sees to select module */ $user_icon = "staff.gif"; - /* Icon admin sees to select module -- irrelevant in this case, see below */ - $mod_icon = "staff.gif"; /* This module has an admin interface in the Modules display */ /* If this is set to 1, and there is no conf/users.php file specifying a location, */ --- 21,24 ---- *************** *** 51,54 **** --- 45,59 ---- /* other modules on which this module depends */ $depend = array("menuman", "search"); + + // The following variables are no longer needed; they are superseded by entries + // in the controlpanel.php file. + + //$rights_file + //$mod_rights_tbl + //$mod_icon + //$admin_op + //$user_op + //$update_link + //$uninstall_allow (needed only for core modules) ?> |