Changeset 4999 for temp/trunk


Ignore:
Timestamp:
2006/09/18 15:28:55 (20 years ago)
Author:
kakinaka
Message:

blank

Location:
temp/trunk/html
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/admin/customer/edit.php

    r4998 r4999  
    110110    $birth = split("/",$birth[0]); 
    111111     
    112     sfprintr($birth); 
    113  
    114      
    115     $objPage->list_data["year"] = substr($objPage->list_data["birth"], 0, 4); 
    116     $objPage->list_data["month"] = substr($objPage->list_data["birth"], 5, 2); 
    117     $objPage->list_data["day"] = substr($objPage->list_data["birth"], 7, 2); 
    118     $objPage->list_data["month"] = 11; 
    119     $objPage->list_data["day"] = 1; 
    120      
    121      
    122     sfprintr($objPage->list_data ); 
    123  
     112    $objPage->list_data["year"] = $birth[0]; 
     113    $objPage->list_data["month"] = $birth[1]; 
     114    $objPage->list_data["day"] = $birth[2]; 
    124115     
    125116    $objPage->list_data["password"] = DEFAULT_PASSWORD; 
  • temp/trunk/html/mypage/change.php

    r4638 r4999  
    277277        $arrForm['month'] = $month; 
    278278        $arrForm['day'] = $day; 
     279         
     280        sfprintr($arrForm); 
    279281    } 
    280282    return $arrForm; 
Note: See TracChangeset for help on using the changeset viewer.