Update of /cvsroot/phpwsscoreboard/scoreboard/boost
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7882/boost
Modified Files:
update.php
Log Message:
Parse error... grrr
Index: update.php
===================================================================
RCS file: /cvsroot/phpwsscoreboard/scoreboard/boost/update.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** update.php 24 Nov 2004 21:23:46 -0000 1.4
--- update.php 24 Nov 2004 22:30:27 -0000 1.5
***************
*** 13,20 ****
// Need to do core version check
! if(version_compare($GLOBALS['core']->version, "0.9.3-3") {
! $content .= "This module requires a phpWebSite core version of 0.9.3-3 or greater to install.<br />";
! $content .= "You are currently using phpWebSite core version " . $GLOBALS["core"]->version . ".<br />";
! return;
}
--- 13,20 ----
// Need to do core version check
! if(version_compare($GLOBALS['core']->version, "0.9.3-3") < 0) {
! $content .= "This module requires a phpWebSite core version of 0.9.3-3 or greater to install.<br />";
! $content .= "You are currently using phpWebSite core version " . $GLOBALS["core"]->version . ".<br />";
! return;
}
|