Ignore:
Timestamp:
2011/01/05 23:00:33 (13 years ago)
Author:
Seasoft
Message:

#714(パス指定によるリダイレクトの記述を簡潔にする) 共通処理実装、個別処理の一部を実装
#869(create_date, update_date 列の定義が、表やDBによるバラツキがある)

  • NOT NULL 制約により実装漏れに気づいたので修正

#893(SC_Response#reload を使うべきであろう箇所で SC_Response#sendRedirect を利用している)
#628(未使用処理・定義などの削除)

File:
1 edited

Legend:

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

    r19805 r19832  
    106106            if(count($arrErr) == 0) { 
    107107                if($objCustomer->getCustomerDataFromEmailPass($arrForm['login_pass'], $arrForm['login_email'], true)) { 
    108                     $this->objDisplay->redirect($this->getLocation(URL_PATH, array(), false)); 
     108                    $this->objDisplay->redirect('/', array(), false, true); 
    109109                    exit; 
    110110                } else { 
     
    132132            //マイページログイン中はログイン画面へ移行 
    133133            if ($mypage_url_search == 2){ 
    134                 $this->objDisplay->redirect($this->getLocation(URL_PATH . "mypage/login.php", array(), false)); 
     134                $this->objDisplay->redirect('/mypage/login.php'); 
    135135            }else{ 
    136                 $this->objDisplay->redirect($this->getLocation(URL_PATH, array(), false)); 
     136                $this->objDisplay->redirect('/', array(), false, true); 
    137137            } 
    138138            exit; 
Note: See TracChangeset for help on using the changeset viewer.