Changeset 4999 for temp/trunk/html/admin


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

blank

File:
1 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; 
Note: See TracChangeset for help on using the changeset viewer.