|
From: <gbr...@us...> - 2003-07-31 00:45:48
|
Update of /cvsroot/phpwebsite-comm/modules/staffman/boost
In directory sc8-pr-cvs1:/tmp/cvs-serv6795/boost
Modified Files:
uninstall.php
Log Message:
updated README, improved multiple item handling
Index: uninstall.php
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/staffman/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 2 Jul 2003 23:45:06 -0000 1.1.1.1
--- uninstall.php 31 Jul 2003 00:45:43 -0000 1.2
***************
*** 30,34 ****
$GLOBALS['core']->sqlDelete("mod_search_register", "module", "staffman");
$content .= "Staff Listing removed from Search system.<br />";
!
} else
--- 30,40 ----
$GLOBALS['core']->sqlDelete("mod_search_register", "module", "staffman");
$content .= "Staff Listing removed from Search system.<br />";
!
! $ok = PHPWS_File::rmdir(PHPWS_HOME_DIR . "images/staffman/");
! if ($ok) {
! $content .= "The staffmember images directory was successfully removed.<br />";
! } else {
! $content .= "The staffmember images directory could not be removed.<br />";
! }
} else
|