|
From: <be...@us...> - 2013-10-01 20:23:36
|
Revision: 12116
http://sourceforge.net/p/xoops/svn/12116
Author: beckmi
Date: 2013-10-01 20:23:34 +0000 (Tue, 01 Oct 2013)
Log Message:
-----------
Setting minimum PHP version at 5.3.7
Modified Paths:
--------------
XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt
XoopsCore/branches/2.5.x/2.5.7/htdocs/install/include/functions.php
XoopsCore/branches/2.5.x/2.5.7/release_notes.txt
Modified: XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt 2013-10-01 20:19:32 UTC (rev 12115)
+++ XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt 2013-10-01 20:23:34 UTC (rev 12116)
@@ -37,6 +37,7 @@
- bug in commentrenderer.php (Roby73/irmtfan)
- added missing info about new language constants in Fast Comments (irmtfan/mamba)
- fixed Undefined index: uid in file /modules/profile/userinfo.php line 24 (cesag/mamba)
+- set minimum PHP version to 5.3.7
Security fixes
- XSS issues reported by Mehdi Dadkhah (rgriffith)
Modified: XoopsCore/branches/2.5.x/2.5.7/htdocs/install/include/functions.php
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/htdocs/install/include/functions.php 2013-10-01 20:19:32 UTC (rev 12115)
+++ XoopsCore/branches/2.5.x/2.5.7/htdocs/install/include/functions.php 2013-10-01 20:23:34 UTC (rev 12116)
@@ -145,9 +145,9 @@
function xoPhpVersion()
{
- if (version_compare(phpversion(), '5.2.0', '>=')) {
+ if (version_compare(phpversion(), '5.3.7', '>=')) {
return xoDiag(1, phpversion());
- } else if (version_compare(phpversion(), '5.1.0', '>=')) {
+ } elseif (version_compare(phpversion(), '5.3.0', '>=')) {
return xoDiag(0, phpversion());
} else {
return xoDiag(-1, phpversion());
Modified: XoopsCore/branches/2.5.x/2.5.7/release_notes.txt
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/release_notes.txt 2013-10-01 20:19:32 UTC (rev 12115)
+++ XoopsCore/branches/2.5.x/2.5.7/release_notes.txt 2013-10-01 20:23:34 UTC (rev 12116)
@@ -1,8 +1,8 @@
-XOOPS 2.5.6 Final
+XOOPS 2.5.7 Beta 1
-The XOOPS Development Team is pleased to announce the release of XOOPS 2.5.6 Final.
+The XOOPS Development Team is pleased to announce the release of XOOPS 2.5.7 Beta 1.
-This release is focused on making XOOPS 2.5.6 compatible with PHP 5.4.x, and on security enhancements
+This release is focused on making XOOPS 2.5.7 compatible with PHP 5.5.x, and on security enhancements
See the Changelog for more details.
@@ -10,7 +10,7 @@
-----------------------------------
PHP:
-Any PHP version >= 5.2 (PHP 5.3+ is strongly recommended)
+Any PHP version >= 5.3.7 (PHP 5.4+ is strongly recommended)
MySQL:
MySQL server 5.0+
|