Ignore:
Timestamp:
2011/01/16 00:10:21 (13 years ago)
Author:
Seasoft
Message:

#714(パス指定によるリダイレクトの記述を簡潔にする)
#628(未使用処理・定義などの削除)

File:
1 edited

Legend:

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

    r19907 r19921  
    106106            if(count($arrErr) == 0) { 
    107107                if($objCustomer->getCustomerDataFromEmailPass($arrForm['login_pass'], $arrForm['login_email'], true)) { 
    108                     SC_Response_Ex::sendRedirectFromUrlPath('', array(), false, false); 
     108                    SC_Response_Ex::sendRedirect(HTTP_URL); 
    109109                    exit; 
    110110                } else { 
     
    134134            if ($mypage_url_search == 2){ 
    135135                SC_Response_Ex::sendRedirectFromUrlPath('mypage/login.php'); 
    136             }else{ 
    137                 SC_Response_Ex::sendRedirectFromUrlPath('', array(), false, false); 
     136            } 
     137            // 上記以外の場合、トップへ遷移 
     138            else{ 
     139                SC_Response_Ex::sendRedirect(HTTP_URL); 
    138140            } 
    139141            exit; 
Note: See TracChangeset for help on using the changeset viewer.