Ignore:
Timestamp:
2008/03/12 20:20:35 (16 years ago)
Author:
adachi
Message:

merge r17118:17124 (shared ssl)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/pages/frontparts/LC_Page_FrontParts_LoginCheck.php

    r16741 r17137  
    9191            if(count($arrErr) == 0) { 
    9292                if($objCustomer->getCustomerDataFromEmailPass($arrForm['login_pass'], $arrForm['login_email'], true)) { 
    93                     $this->sendRedirect($this->getLocation($_POST['url'])); 
     93                    $this->sendRedirect($this->getLocation($_POST['url'], array(), false)); 
    9494                    exit; 
    9595                } else { 
     
    107107            } else { 
    108108                // 入力エラーの場合、元のアドレスに戻す。 
    109                 $this->sendRedirect($this->getLocation($_POST['url'])); 
     109                $this->sendRedirect($this->getLocation($_POST['url'], array(), false)); 
    110110                exit; 
    111111            } 
     
    117117            //マイページログイン中はログイン画面へ移行 
    118118            if ($mypage_url_search == 2){ 
    119                 $this->sendRedirect($this->getLocation(URL_DIR . "mypage/login.php")); 
     119                $this->sendRedirect($this->getLocation(URL_DIR . "mypage/login.php", array(), false)); 
    120120            }else{ 
    121                 $this->sendRedirect($this->getLocation($_POST['url'])); 
     121                $this->sendRedirect($this->getLocation($_POST['url'], array(), false)); 
    122122            } 
    123123            exit; 
Note: See TracChangeset for help on using the changeset viewer.