Changeset 16632


Ignore:
Timestamp:
2007/10/31 10:04:56 (16 years ago)
Author:
nanasess
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/pages/admin/customer/LC_Page_Admin_Customer_Edit.php

    r16582 r16632  
    3333 */ 
    3434class LC_Page_Admin_Customer_Edit extends LC_Page { 
    35  
    36     // {{{ properties 
    37     // TODO 
    38     var $arrSession; 
    39     var $tpl_mode; 
    40     var $list_data; 
    41  
    42     var $arrErr; 
    43     var $arrYear; 
    44     var $arrMonth; 
    45     var $arrDay; 
    46     var $arrPref; 
    47     var $arrJob; 
    48     var $arrSex; 
    49     var $arrReminder; 
    50     var $count; 
    51  
    52     var $tpl_strnavi; 
    53  
    5435 
    5536    // }}} 
     
    157138 
    158139            $this->list_data["year"] = $birth[0]; 
    159             $this->list_data["month"] = $birth[1]; 
    160             $this->list_data["day"] = $birth[2]; 
     140            $this->list_data["month"] = isset($birth[1]) ? $birth[1] : ""; 
     141            $this->list_data["day"] = isset($birth[2]) ? $birth[2] : ""; 
    161142 
    162143            $this->list_data["password"] = DEFAULT_PASSWORD; 
Note: See TracChangeset for help on using the changeset viewer.