Revision: 2970
          https://sourceforge.net/p/mrbs/code/2970/
Author:   cimorrison
Date:     2015-01-21 12:56:18 +0000 (Wed, 21 Jan 2015)
Log Message:
-----------
Updated minimum PHP version from 5.3.0 to 5.3.6 to avoid a bug in 
DateTime::modify().   See SF Support Requests #667

Modified Paths:
--------------
    mrbs/trunk/INSTALL
    mrbs/trunk/web/internalconfig.inc.php

Modified: mrbs/trunk/INSTALL
===================================================================
--- mrbs/trunk/INSTALL  2015-01-21 09:34:29 UTC (rev 2969)
+++ mrbs/trunk/INSTALL  2015-01-21 12:56:18 UTC (rev 2970)
@@ -12,7 +12,7 @@
 maintain, and back up your chosen database system.
 
 No optional PHP packages (other than the database system) are required for
-this application.  PHP Version 4 or later is required.
+this application.  PHP Version 5.3.6 or later is required.
 
 You can run PHP either as a CGI or with a direct module interface (also called 
 SAPI). These servers include Apache, Microsoft Internet Information Server, 

Modified: mrbs/trunk/web/internalconfig.inc.php
===================================================================
--- mrbs/trunk/web/internalconfig.inc.php       2015-01-21 09:34:29 UTC (rev 
2969)
+++ mrbs/trunk/web/internalconfig.inc.php       2015-01-21 12:56:18 UTC (rev 
2970)
@@ -113,7 +113,8 @@
  ********************************************************/
 
 // Check PHP version
-$min_PHP_version = '5.3.0';
+// We need 5.3.6 because it fixes a bug that causes DateTime::modify('noon') 
not to work
+$min_PHP_version = '5.3.6';
 if (!function_exists('version_compare') || version_compare(PHP_VERSION, 
$min_PHP_version) < 0)
 {
   die("MRBS requires PHP $min_PHP_version or above.   This server is running 
version " . PHP_VERSION . ".");
------------------------------------------------------------------------------
New Year. New Location. New Benefits. New Data Center in Ashburn, VA.
GigeNET is offering a free month of service with a new server in Ashburn.
Choose from 2 high performing configs, both with 100TB of bandwidth.
Higher redundancy.Lower latency.Increased capacity.Completely compliant.
http://p.sf.net/sfu/gigenet
_______________________________________________
Mrbs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mrbs-commits

Reply via email to