From: <gbr...@us...> - 2003-06-25 22:13:14
|
Update of /cvsroot/phpwebsite-comm/modules/jobman/boost In directory sc8-pr-cvs1:/tmp/cvs-serv30489/boost Modified Files: install.php uninstall.php Log Message: General cleanup, change visible module name to Positions Available Index: install.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/jobman/boost/install.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** install.php 11 Jun 2003 14:54:12 -0000 1.2 --- install.php 25 Jun 2003 22:13:09 -0000 1.3 *************** *** 18,22 **** /* if successful, report the fact */ ! $content = "All Job List Manager tables successfully written.<br />"; $status = 1; --- 18,22 ---- /* if successful, report the fact */ ! $content = "All Positions Available tables successfully written.<br />"; $status = 1; *************** *** 24,28 **** if(isset($_SESSION["OBJ_help"])) { CLS_help::setup_help("jobman"); ! $content .= "Job List Manager successfully registered with Help system.<br />"; } --- 24,28 ---- if(isset($_SESSION["OBJ_help"])) { CLS_help::setup_help("jobman"); ! $content .= "Positions Available successfully registered with Help system.<br />"; } *************** *** 37,43 **** if(!$GLOBALS['core']->sqlInsert($search, "mod_search_register")) { ! $content .= "Job List Manager NOT registered with Search system.<br />"; } else { ! $content .= "Job List Manager successfully registered with Search system.<br />"; } /* end of search section */ --- 37,43 ---- if(!$GLOBALS['core']->sqlInsert($search, "mod_search_register")) { ! $content .= "Positions Available NOT registered with Search system.<br />"; } else { ! $content .= "Positions Available successfully registered with Search system.<br />"; } /* end of search section */ Index: uninstall.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/jobman/boost/uninstall.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** uninstall.php 21 May 2003 22:29:33 -0000 1.1.1.1 --- uninstall.php 25 Jun 2003 22:13:09 -0000 1.2 *************** *** 18,22 **** /* report success */ ! $content = "All Job List Manager tables successfully removed.<br />"; $status = 1; --- 18,22 ---- /* report success */ ! $content = "All Positions Available tables successfully removed.<br />"; $status = 1; *************** *** 24,33 **** if(isset($_SESSION["OBJ_help"])) { CLS_help::uninstall_help("jobman"); ! $content .= "Job List Manager removed from Help system.<br />"; } /* uninstall search */ $GLOBALS['core']->sqlDelete("mod_search_register", "module", "jobman"); ! $content .= "Job List Manager removed from Search system.<br />"; --- 24,33 ---- if(isset($_SESSION["OBJ_help"])) { CLS_help::uninstall_help("jobman"); ! $content .= "Positions Available removed from Help system.<br />"; } /* uninstall search */ $GLOBALS['core']->sqlDelete("mod_search_register", "module", "jobman"); ! $content .= "Positions Available removed from Search system.<br />"; |