Ignore:
Timestamp:
2013/08/26 15:52:37 (11 years ago)
Author:
m_uehara
Message:

#2348 r23116 - r23125 をマージ

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13_0/data/class/pages/mypage/LC_Page_Mypage_DeliveryAddr.php

    r23103 r23126  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        $this->skip_load_page_layout = true; 
     
    5757     * @return void 
    5858     */ 
    59     function process() 
     59    public function process() 
    6060    { 
    6161        parent::process(); 
     
    6969     * @return void 
    7070     */ 
    71     function action() 
     71    public function action() 
    7272    { 
    7373        $objCustomer = new SC_Customer_Ex(); 
     
    7878        if (isset($_GET['page'])) { 
    7979            $ParentPage = htmlspecialchars($_GET['page'], ENT_QUOTES); 
    80         } else if (isset($_POST['ParentPage'])) { 
     80        } elseif (isset($_POST['ParentPage'])) { 
    8181            $ParentPage = htmlspecialchars($_POST['ParentPage'], ENT_QUOTES); 
    8282        } 
     
    156156 
    157157    /* 登録実行 */ 
    158     function lfRegistData($objAddress, $objFormParam, $customer_id) 
     158    public function lfRegistData($objAddress, $objFormParam, $customer_id) 
    159159    { 
    160160        $arrRet     = $objFormParam->getHashArray(); 
     
    167167    } 
    168168 
    169     function lfRegistDataNonMember($objFormParam) 
     169    public function lfRegistDataNonMember($objFormParam) 
    170170    { 
    171171        $arrRegistColumn = $objFormParam->getDbArray(); 
Note: See TracChangeset for help on using the changeset viewer.