|
From: <be...@us...> - 2014-02-17 10:23:22
|
Revision: 12321
http://sourceforge.net/p/xoops/svn/12321
Author: beckmi
Date: 2014-02-17 10:23:15 +0000 (Mon, 17 Feb 2014)
Log Message:
-----------
extra escape for "e" in YESTERDAY definition in locale.php (madDan)
Modified Paths:
--------------
XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt
XoopsCore/branches/2.5.x/2.5.7/htdocs/language/english/locale.php
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 2014-02-16 09:02:54 UTC (rev 12320)
+++ XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt 2014-02-17 10:23:15 UTC (rev 12321)
@@ -62,6 +62,7 @@
- added "title" to buttons in DHTML Editor (mamba)
- updated required PHP and XOOPS versions, module versions in modules (cesag/mamba)
- added xBootstrap theme (UI/UX Team: Angelo Roja, Bleekk, Heyula)
+- added extra escape for "e" in YESTERDAY definition in locale.php, which was added in PHP 5.4 (madDan)
Security fixes
- XSS issues reported by Mehdi Dadkhah (rgriffith)
Modified: XoopsCore/branches/2.5.x/2.5.7/htdocs/language/english/locale.php
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/htdocs/language/english/locale.php 2014-02-16 09:02:54 UTC (rev 12320)
+++ XoopsCore/branches/2.5.x/2.5.7/htdocs/language/english/locale.php 2014-02-17 10:23:15 UTC (rev 12321)
@@ -24,10 +24,10 @@
setlocale(LC_ALL, 'en_US');
-// !!IMPORTANT!! insert '\' before any char among reserved chars: "a","A","B","c","d","D","F","g","G","h","H","i","I","j","l","L","m","M","n","O","r","s","S","t","T","U","w","W","Y","y","z","Z"
+// !!IMPORTANT!! insert '\' before any char among reserved chars: "a","A","B","c","d","D","e","F","g","G","h","H","i","I","j","l","L","m","M","n","O","r","s","S","t","T","U","w","W","Y","y","z","Z"
// insert double '\' before 't','r','n'
define("_TODAY","\T\o\d\a\y G:i");
-define("_YESTERDAY","\Y\e\s\\t\e\\r\d\a\y G:i");
+define("_YESTERDAY","\Y\\e\s\\t\\e\\r\d\a\y G:i");
define("_MONTHDAY","n/j G:i");
define("_YEARMONTHDAY","Y/n/j G:i");
define("_ELAPSE","%s ago");
|