• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

XOOPS Cube Legacy base repository


Commit MetaInfo

Revisiónc6d5a71eb6a24b1a9c61054b24468c9160067d7d (tree)
Tiempo2010-01-24 14:25:31
Autorkilica <kilica@704c...>
Commiterkilica

Log Message

- Fix Bug #2839172 - missing SSLLogin feature.

git-svn-id: https://xoopscube.svn.sourceforge.net/svnroot/xoopscube/Package_Legacy/trunk@406 704cf05f-ae62-4b0e-a484-234ee0250e75

Cambiar Resumen

Diferencia incremental

--- a/docs/CHANGES.txt
+++ b/docs/CHANGES.txt
@@ -1,6 +1,18 @@
11 XOOPS Cube Legacy "Package_Legacy" & "XCube core" Changelog
22
33 ----------------------------------------
4+2010/XX/XX: Package Revision 2.1.8
5+----------------------------------------
6+[Bug Fix - From Bug Tracker]
7+- Fix Bug #2806101 - References to JP.XOOPS.ORG (removed by XOOPS Foundation).
8+- Fix Bug #2839172 - missing SSLLogin feature.
9+
10+[Staff]
11+- GIJOE
12+- kilica
13+- Mikhail
14+
15+----------------------------------------
416 2009/05/23: Package Revision 2.1.7
517 ----------------------------------------
618 [Bug Fix - From Bug Tracker]
--- a/html/modules/legacy/actions/MiscSslloginAction.class.php
+++ b/html/modules/legacy/actions/MiscSslloginAction.class.php
@@ -28,7 +28,14 @@ class Legacy_MiscSslloginAction extends Legacy_Action
2828 // Because this action's template uses USER message catalog, load it.
2929 //
3030 $root =& $controller->mRoot;
31-
31+
32+ $config_handler =& xoops_gethandler('config');
33+ $moduleConfigUser =& $config_handler->getConfigsByDirname('user');
34+
35+ if($moduleConfigUser['use_ssl'] == 1 && ! empty($_POST[$moduleConfigUser['sslpost_name']])){
36+ session_id($_POST[$moduleConfigUser['sslpost_name']]);
37+ }
38+
3239 $render->setTemplateName("legacy_misc_ssllogin.html");
3340 $render->setAttribute("message", XCube_Utils::formatMessage(_MD_LEGACY_MESSAGE_LOGIN_SUCCESS, $xoopsUser->get('uname')));
3441 }