Changeset 5237 for temp/trunk/html


Ignore:
Timestamp:
2006/09/20 13:55:22 (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

    r4999 r5237  
    108108     
    109109    $birth = split(" ", $objPage->list_data["birth"]); 
    110     $birth = split("/",$birth[0]); 
     110    $birth = split("-",$birth[0]); 
    111111     
    112112    $objPage->list_data["year"] = $birth[0]; 
  • temp/trunk/html/mypage/change.php

    r5236 r5237  
    272272    if (isset($arrForm['birth'])){ 
    273273        $birth = split(" ", $arrForm["birth"]); 
    274         list($year, $month, $day) = split("/",$birth[0]); 
     274        list($year, $month, $day) = split("-",$birth[0]); 
    275275         
    276276        sfprintr($birth); 
Note: See TracChangeset for help on using the changeset viewer.