Issue 2546 In Member module, When modify member info, XE Check password. But, on SSL only mode, the page was reloaded by iframe(not sure, but net status of FireBug said.)

Also, XE refreshed the session information of password check. As it was, a member could not only modify his/her information, but also retyped his/her password.
Check if it is 'reloaded' request. If it is, do not modify session checker.

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@11571 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
misol 2012-09-30 15:17:04 +00:00
parent 9d77775934
commit d5db581212

View file

@ -249,7 +249,7 @@
**/
function dispMemberModifyInfo()
{
if($_SESSION['rechecked_password_step'] != 'VALIDATE_PASSWORD')
if($_SESSION['rechecked_password_step'] != 'VALIDATE_PASSWORD' && $_SESSION['rechecked_password_step'] != 'INPUT_DATA')
{
$this->dispMemberModifyInfoBefore();
return;