Ignore:
Timestamp:
2010/11/07 01:47:11 (16 years ago)
Author:
Yammy
Message:

LC_Page::sendRedirect() を SC_DIaplay::redirect() に移行

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/camp/camp-2_5-E/data/class/pages/frontparts/LC_Page_FrontParts_LoginCheck.php

    r19341 r19352  
    106106            if(count($arrErr) == 0) { 
    107107                if($objCustomer->getCustomerDataFromEmailPass($arrForm['login_pass'], $arrForm['login_email'], true)) { 
    108                     $this->sendRedirect($this->getLocation(URL_DIR, array(), false)); 
     108                    $this->objDisplay->redirect($this->getLocation(URL_DIR, array(), false)); 
    109109                    exit; 
    110110                } else { 
     
    122122            } else { 
    123123                // 入力エラーの場合、元のアドレスに戻す。 
    124                 $this->sendRedirect($this->getLocation($_POST['url'], array(), false)); 
     124                $this->objDisplay->redirect($this->getLocation($_POST['url'], array(), false)); 
    125125                exit; 
    126126            } 
     
    132132            //マイページログイン中はログイン画面へ移行 
    133133            if ($mypage_url_search == 2){ 
    134                 $this->sendRedirect($this->getLocation(URL_DIR . "mypage/login.php", array(), false)); 
     134                $this->objDisplay->redirect($this->getLocation(URL_DIR . "mypage/login.php", array(), false)); 
    135135            }else{ 
    136                 $this->sendRedirect($this->getLocation(URL_DIR, array(), false)); 
     136                $this->objDisplay->redirect($this->getLocation(URL_DIR, array(), false)); 
    137137            } 
    138138            exit; 
Note: See TracChangeset for help on using the changeset viewer.