Changeset 13953


Ignore:
Timestamp:
2007/05/31 20:20:37 (17 years ago)
Author:
nakanishi
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/html/admin/basis/mail_template.php

    r13947 r13953  
    3939} 
    4040 
    41  
    4241$sql = "SELECT * FROM dtb_mailtemplate WHERE template_id = 0"; 
    4342$default_template = $conn->getAll($sql); 
     43$split_data = explode(".",$default_template[0]["create_date"]); 
     44$default_template[0]["create_date"] = $split_data[0];     
    4445$objPage->default_template = $default_template[0]; 
    4546 
    4647$sql = "SELECT * FROM dtb_mailtemplate WHERE template_id = 1"; 
    4748$default_template_mobile = $conn->getAll($sql); 
     49$split_data = explode(".",$default_template_mobile[0]["create_date"]); 
     50$default_template_mobile[0]["create_date"] = $split_data[0];  
    4851$objPage->default_template_mobile = $default_template_mobile[0]; 
    4952 
Note: See TracChangeset for help on using the changeset viewer.