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/shopping/LC_Page_Shopping.php

    r21437 r21441  
    126126 
    127127                // モバイルサイトで携帯アドレスの登録が無い場合、携帯アドレス登録ページへ遷移 
    128                 if(SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) { 
    129                     if($this->hasEmailMobile($objCustomer) == false) { 
     128                if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) { 
     129                    if ($this->hasEmailMobile($objCustomer) == false) { 
    130130                        SC_Response_Ex::sendRedirectFromUrlPath('entry/email_mobile.php'); 
    131131                        exit; 
     
    150150            else { 
    151151                // 仮登録の場合 
    152                 if($this->checkTempCustomer($objFormParam->getValue('login_email'))) { 
     152                if ($this->checkTempCustomer($objFormParam->getValue('login_email'))) { 
    153153                    if (SC_Display_Ex::detectDevice() === DEVICE_TYPE_SMARTPHONE) { 
    154154                        echo $this->lfGetErrorMessage(TEMP_LOGIN_ERROR); 
     
    510510        case DEVICE_TYPE_PC: 
    511511        default: 
    512             if(!$objCustomer->getCustomerDataFromEmailPass($login_pass, $login_email)) { 
     512            if (!$objCustomer->getCustomerDataFromEmailPass($login_pass, $login_email)) { 
    513513                return false; 
    514514            } else { 
Note: See TracChangeset for help on using the changeset viewer.