Ignore:
Timestamp:
2012/02/06 11:05:15 (12 years ago)
Author:
Seasoft
Message:

#1613 (ソース整形・ソースコメントの改善)

  • Zend Framework PHP 標準コーディング規約への準拠を高めた
File:
1 edited

Legend:

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

    r20953 r21441  
    6161 
    6262        // ログインしていない場合は必ずログインページを表示する 
    63         if($objCustomer->isLoginSuccess(true) === false) { 
     63        if ($objCustomer->isLoginSuccess(true) === false) { 
    6464            // クッキー管理クラス 
    6565            $objCookie = new SC_Cookie_Ex(COOKIE_EXPIRE); 
    6666            // クッキー判定(メールアドレスをクッキーに保存しているか) 
    6767            $this->tpl_login_email = $objCookie->getCookie('login_email'); 
    68             if($this->tpl_login_email != "") { 
     68            if ($this->tpl_login_email != "") { 
    6969                $this->tpl_login_memory = "1"; 
    7070            } 
     
    7777 
    7878            // 携帯端末IDが一致する会員が存在するかどうかをチェックする。 
    79             if (SC_Display_Ex::detectDevice() === DEVICE_TYPE_MOBILE){ 
     79            if (SC_Display_Ex::detectDevice() === DEVICE_TYPE_MOBILE) { 
    8080                $this->tpl_valid_phone_id = $objCustomer->checkMobilePhoneId(); 
    8181            } 
Note: See TracChangeset for help on using the changeset viewer.