From: Don S. <ri...@us...> - 2004-08-11 02:10:34
|
Update of /cvsroot/phpwsbb/phpwsbb/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19608/boost Modified Files: install.php update.php Log Message: Fixed bug #977804, PHPWS_File::makeDir() only exists in core >= 0.9.3-4. Need to put out a new version with right system requirements and pull 0.9.6 Index: install.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/boost/install.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** install.php 14 Jun 2004 21:19:54 -0000 1.18 --- install.php 11 Aug 2004 02:10:24 -0000 1.19 *************** *** 31,36 **** // Need to do core version check ! if($GLOBALS["core"]->version < "0.9.3-2") { ! $content .= "This module requires a phpWebSite core version of 0.9.3-2 or greater to install.<br />"; $content .= "<br />You are currently using phpWebSite core version " . $GLOBALS["core"]->version . ".<br />"; return; --- 31,36 ---- // Need to do core version check ! if($GLOBALS["core"]->version < "0.9.3-4") { ! $content .= "This module requires a phpWebSite core version of 0.9.3-4 or greater to install.<br />"; $content .= "<br />You are currently using phpWebSite core version " . $GLOBALS["core"]->version . ".<br />"; return; Index: update.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/boost/update.php,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** update.php 4 May 2004 00:25:14 -0000 1.31 --- update.php 11 Aug 2004 02:10:24 -0000 1.32 *************** *** 29,34 **** // Need to do core version check ! if($GLOBALS["core"]->version < "0.9.3-2") { ! $content .= "This module requires a phpWebSite core version of 0.9.3-2 or greater to install.<br />"; $content .= "<br />You are currently using phpWebSite core version " . $GLOBALS["core"]->version . ".<br />"; return; --- 29,34 ---- // Need to do core version check ! if($GLOBALS["core"]->version < "0.9.3-4") { ! $content .= "This module requires a phpWebSite core version of 0.9.3-4 or greater to install.<br />"; $content .= "<br />You are currently using phpWebSite core version " . $GLOBALS["core"]->version . ".<br />"; return; |