From: <var...@us...> - 2014-09-26 12:37:51
|
Revision: 9123 http://sourceforge.net/p/phpwiki/code/9123 Author: vargenau Date: 2014-09-26 12:37:47 +0000 (Fri, 26 Sep 2014) Log Message: ----------- You need PHP >= 5.3 Modified Paths: -------------- trunk/INSTALL trunk/lib/main.php Modified: trunk/INSTALL =================================================================== --- trunk/INSTALL 2014-09-26 12:29:57 UTC (rev 9122) +++ trunk/INSTALL 2014-09-26 12:37:47 UTC (rev 9123) @@ -3,7 +3,7 @@ PhpWiki 1.5.0 requires a web server with at least PHP version 5.3. All users of PHP are strongly encouraged to upgrade to -PHP 5.3.28 or to PHP 5.4 or 5.5. +PHP 5.3.29 or to PHP 5.4 or 5.5. Visit <http://www.php.net> and <http://php.net/downloads.php> for downloads and information. Modified: trunk/lib/main.php =================================================================== --- trunk/lib/main.php 2014-09-26 12:29:57 UTC (rev 9122) +++ trunk/lib/main.php 2014-09-26 12:37:47 UTC (rev 9123) @@ -1405,8 +1405,8 @@ function main() { - if (version_compare(PHP_VERSION, '5.2', '<')) { - exit(_("Your PHP version is too old. You must have at least PHP 5.2.")); + if (version_compare(PHP_VERSION, '5.3', '<')) { + exit(_("Your PHP version is too old. You must have at least PHP 5.3.")); } if (!USE_DB_SESSION) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |