From: <be...@us...> - 2013-04-26 21:00:43
|
Revision: 11460 http://sourceforge.net/p/xoops/svn/11460 Author: beckmi Date: 2013-04-26 21:00:39 +0000 (Fri, 26 Apr 2013) Log Message: ----------- - fixing $GLOBAL in jquery.php (Zyspec) - improving protection against spam by turning off registration's 1st step saving (timgno) 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/include/install.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/admin/tplsets/jquery.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-04-26 19:25:57 UTC (rev 11459) +++ XoopsCore/branches/2.5.x/2.5.6/docs/changelog.250.txt 2013-04-26 21:00:39 UTC (rev 11460) @@ -6,6 +6,8 @@ Bugfixes: - updated English translations (Cesag,Mamba) - extra check for $noHtml in XoopsEditorHandler->get (luciorota) +- fixing $GLOBAL in jquery.php (Zyspec) +- improving protection against spam by turning off registration's 1st step saving (timgno) =============================== 2013/03/25: Version 2.5.6 RC1 Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/include/install.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/include/install.php 2013-04-26 19:25:57 UTC (rev 11459) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/include/install.php 2013-04-26 21:00:39 UTC (rev 11460) @@ -25,7 +25,7 @@ xoops_loadLanguage('user'); // Create registration steps - profile_install_addStep(_PROFILE_MI_STEP_BASIC, '', 1, 1); + profile_install_addStep(_PROFILE_MI_STEP_BASIC, '', 1, 0); profile_install_addStep(_PROFILE_MI_STEP_COMPLEMENTARY, '', 2, 1); // Create categories Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/admin/tplsets/jquery.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/admin/tplsets/jquery.php 2013-04-26 19:25:57 UTC (rev 11459) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/admin/tplsets/jquery.php 2013-04-26 21:00:39 UTC (rev 11460) @@ -38,7 +38,7 @@ @$op = "default"; } -$GLOBAL['xoopsLogger']->usePopup = true; +$GLOBALS['xoopsLogger']->usePopup = true; switch ($op) { // Display tree folder |