From: <gbr...@us...> - 2003-08-02 00:03:37
|
Update of /cvsroot/phpwebsite-comm/modules/jobman/conf In directory sc8-pr-cvs1:/tmp/cvs-serv11633/conf Modified Files: boost.php Log Message: removing unused variables from conf/boost.php Index: boost.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/jobman/conf/boost.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** boost.php 1 Aug 2003 00:53:59 -0000 1.6 --- boost.php 2 Aug 2003 00:03:31 -0000 1.7 *************** *** 16,23 **** /* Initial access file for module */ $mod_filename = "index.php"; - /* Opcode for admin entry ? */ - $admin_op = "&JOB_MAN_op=list"; //& required to avoid XHTML errors - /* Opcode for user entry */ - $user_op = "&JOB_MAN_op=list"; /* Who can view the list */ $allow_view = "all"; --- 16,19 ---- *************** *** 25,30 **** /* Icon user sees to select module */ $user_icon = "jobman.gif"; - /* Icon admin sees to select module -- irrelevant in this case, see below */ - $mod_icon = "jobman.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 ---- *************** *** 48,54 **** $version = "1.2"; /* not sure, but likely the location on the web of the current version number */ - /* $update_link = "phpwebsite.appstate.edu/fallout/updates/linkman/VERSION"; */ /* other modules on which this module depends */ $depend = array("menuman", "search"); ?> --- 42,58 ---- $version = "1.2"; /* not sure, but likely the location on the web of the current version number */ /* 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) ?> |