Ignore:
Timestamp:
2011/02/12 19:44:52 (15 years ago)
Author:
kimoto
Message:

LC_Page_Mypage_LoginCheck削除

  • ログインの処理はLC_Page_FrontParts_LoginCheckですべて行う
  • 最終的にはPageクラスで行うべきではない
File:
1 edited

Legend:

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

    r20156 r20159  
    7171 
    7272            // POSTされてきたIDがある場合は優先する。 
    73             if(isset($_POST['mypage_login_email']) 
    74                && $_POST['mypage_login_email'] != "") { 
    75                 $this->tpl_login_email = $_POST['mypage_login_email']; 
     73            if(isset($_POST['login_email']) 
     74               && $_POST['login_email'] != "") { 
     75                $this->tpl_login_email = $_POST['login_email']; 
    7676            } 
    7777 
     
    8080                $this->tpl_valid_phone_id = $objCustomer->checkMobilePhoneId(); 
    8181            } 
    82             $this->tpl_title    = 'MYページ(ログイン)'; 
    83             $this->tpl_mainpage = 'mypage/login.tpl'; 
     82            $this->tpl_title        = 'MYページ(ログイン)'; 
     83            $this->tpl_mainpage     = 'mypage/login.tpl'; 
     84            $this->transactionid    = SC_Helper_Session_Ex::getToken(); 
    8485 
    8586        } else { 
Note: See TracChangeset for help on using the changeset viewer.