Add to r12758, Simplify member module SSL Action registration.

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12759 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
misol 2013-02-15 05:04:31 +00:00
parent 008ef284c8
commit dca5a41d30

View file

@ -362,6 +362,9 @@ class member extends ModuleObject {
*/
function recompileCache()
{
// Set to use SSL upon actions related member join/information/password and so on. 2013.02.15
$ssl_actions = array('dispMemberModifyPassword', 'dispMemberSignUpForm', 'dispMemberModifyInfo', 'dispMemberModifyEmailAddress', 'dispMemberGetTempPassword', 'dispMemberResendAuthMail', 'dispMemberLoginForm', 'dispMemberFindAccount', 'dispMemberLeave', 'procMemberLogin', 'procMemberModifyPassword', 'procMemberInsert', 'procMemberModifyInfo', 'procMemberFindAccount', 'procMemberModifyEmailAddress', 'procMemberUpdateAuthMail', 'procMemberResendAuthMail', 'procMemberLeave', 'getMemberMenu');
Context::addSSLActions($ssl_actions);
}
/**