Ignore:
Timestamp:
2013/06/08 16:35:27 (13 years ago)
Author:
Seasoft
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.13.0)

  • 主に空白・空白行の調整。もう少し整えたいが、一旦現状コミット。
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/pages/entry/LC_Page_Entry.php

    r22591 r22856  
    2222 */ 
    2323 
    24 // {{{ requires 
    2524require_once CLASS_EX_REALDIR . 'page_extends/LC_Page_Ex.php'; 
    2625 
     
    3231 * @version $Id:LC_Page_Entry.php 15532 2007-08-31 14:39:46Z nanasess $ 
    3332 */ 
    34 class LC_Page_Entry extends LC_Page_Ex  
     33class LC_Page_Entry extends LC_Page_Ex 
    3534{ 
    36  
    37     // {{{ properties 
    38  
    39     // }}} 
    40     // {{{ functions 
    41  
    4235    /** 
    4336     * Page を初期化する. 
     
    7972    function action() 
    8073    { 
    81  
    8274        $objFormParam = new SC_FormParam_Ex(); 
    8375 
     
    141133                $this->arrForm  = $objFormParam->getHashArray(); 
    142134                if (empty($this->arrErr)) { 
    143  
    144135                    $uniqid             = $this->lfRegistCustomerData($this->lfMakeSqlVal($objFormParam)); 
    145136 
     
    176167    } 
    177168 
    178     // }}} 
    179     // {{{ protected functions 
    180169    /** 
    181170     * 会員情報の登録 
     
    187176    { 
    188177        SC_Helper_Customer_Ex::sfEditCustomerData($sqlval); 
     178 
    189179        return $sqlval['secret_key']; 
    190180    } 
     
    228218            $arrResults['mobile_phone_id']  =  SC_MobileUserAgent_Ex::getId(); 
    229219        } 
     220 
    230221        return $arrResults; 
    231222    } 
     
    295286    function lfCheckReferer(&$post, $referer) 
    296287    { 
    297  
    298288        if (SC_Display_Ex::detectDevice() !== DEVICE_TYPE_MOBILE 
    299289            && empty($post) 
     
    301291            return false; 
    302292            } 
     293 
    303294        return true; 
    304295    } 
Note: See TracChangeset for help on using the changeset viewer.