From: <be...@us...> - 2013-03-26 05:36:34
|
Revision: 11309 http://sourceforge.net/p/xoops/svn/11309 Author: beckmi Date: 2013-03-26 05:36:31 +0000 (Tue, 26 Mar 2013) Log Message: ----------- added missing call for user language in /profile/index.php (xoobaru/zyspec) Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.6/docs/changelog.250.txt XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/index.php Modified: XoopsCore/branches/2.5.x/2.5.6/docs/changelog.250.txt =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/docs/changelog.250.txt 2013-03-25 15:06:50 UTC (rev 11308) +++ XoopsCore/branches/2.5.x/2.5.6/docs/changelog.250.txt 2013-03-26 05:36:31 UTC (rev 11309) @@ -12,6 +12,7 @@ - fix for missing Protector logo under PHP 5.4 (mamba) - replacing ereg with preg_match in userutility.php (pmartina/paul) - #1219 dhtmltextarea editor accent not displayed (cesag/alain091) + - added missing call for user language in /profile/index.php (xoobaru/zyspec) Security fixes - XSS/CSRF vulnerability in system/admin/groupperm.php (Dingjie Yang,Qualys/trabis) Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/index.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/index.php 2013-03-25 15:06:50 UTC (rev 11308) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/index.php 2013-03-26 05:36:31 UTC (rev 11309) @@ -38,6 +38,7 @@ if (isset($_GET['xoops_redirect'])) { $GLOBALS['xoopsTpl']->assign('redirect_page', htmlspecialchars(trim($_GET['xoops_redirect']), ENT_QUOTES)); } + xoops_loadLanguage('user'); if ($GLOBALS['xoopsConfig']['usercookie']) { $GLOBALS['xoopsTpl']->assign('lang_rememberme', _US_REMEMBERME); } |