|
From: <be...@us...> - 2013-09-28 21:37:56
|
Revision: 12104
http://sourceforge.net/p/xoops/svn/12104
Author: beckmi
Date: 2013-09-28 21:37:53 +0000 (Sat, 28 Sep 2013)
Log Message:
-----------
fixing a typo
Modified Paths:
--------------
XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt
XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/admin/tplsets/jquery.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 2013-09-28 06:05:44 UTC (rev 12103)
+++ XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt 2013-09-28 21:37:53 UTC (rev 12104)
@@ -38,6 +38,9 @@
- 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)
+Security fixes
+ - XSS issues reported by Mehdi Dadkhah (rgriffith)
+
Updated:
- jGrowl to 1.2.13 (mamba)
- jQuery Form to 3.42.0 (mamba)
Modified: XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/admin/tplsets/jquery.php
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/admin/tplsets/jquery.php 2013-09-28 06:05:44 UTC (rev 12103)
+++ XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/admin/tplsets/jquery.php 2013-09-28 21:37:53 UTC (rev 12104)
@@ -26,8 +26,8 @@
error_reporting(0);
$GLOBALS['xoopsLogger']->activated = false;
-if ( file_exists("./../../language/".$xoopsConfig['language']."/admin/tplsets.php") ) {
- include_once './../../language/'.$xoopsConfig['language']."/admin/tplsets.php");
+if ( file_exists('./../../language/'.$xoopsConfig['language'].'"/admin/tplsets.php') ) {
+ include_once './../../language/'.$xoopsConfig['language'].'/admin/tplsets.php';
} else {
include_once './../../language/english/admin/tplsets.php';
}
|