Update of /cvsroot/phpwebsite-comm/modules/jobman/boost
In directory sc8-pr-cvs1:/tmp/cvs-serv29715/boost
Modified Files:
install.php
Log Message:
fixed install error
Index: install.php
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/jobman/boost/install.php,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** install.php 21 May 2003 22:29:33 -0000 1.1.1.1
--- install.php 11 Jun 2003 14:54:12 -0000 1.2
***************
*** 15,19 ****
/* read sql install script, execute it, suppress errors */
! if ($core->sqlImport($core->source_dir."mod/jobman/boost/install.sql", TRUE, TRUE)) {
/* if successful, report the fact */
--- 15,19 ----
/* read sql install script, execute it, suppress errors */
! if ($GLOBALS['core']->sqlImport($GLOBALS['core']->source_dir."mod/jobman/boost/install.sql", TRUE, TRUE)) {
/* if successful, report the fact */
***************
*** 36,40 ****
$search['show_block'] = 1;
! if(!$core->sqlInsert($search, "mod_search_register")) {
$content .= "Job List Manager NOT registered with Search system.<br />";
} else {
--- 36,40 ----
$search['show_block'] = 1;
! if(!$GLOBALS['core']->sqlInsert($search, "mod_search_register")) {
$content .= "Job List Manager NOT registered with Search system.<br />";
} else {
|