Changeset 13947


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

Legend:

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

    r13946 r13947  
    4242$sql = "SELECT * FROM dtb_mailtemplate WHERE template_id = 0"; 
    4343$default_template = $conn->getAll($sql); 
    44 $objPage->default_template = $default_template; 
     44$objPage->default_template = $default_template[0]; 
    4545 
    4646$sql = "SELECT * FROM dtb_mailtemplate WHERE template_id = 1"; 
    4747$default_template_mobile = $conn->getAll($sql); 
    48 $objPage->default_template_mobile = $default_template_mobile; 
     48$objPage->default_template_mobile = $default_template_mobile[0]; 
    4949 
    5050$sql = "SELECT * FROM dtb_mailtemplate WHERE del_flg = 0 AND template_id >1 ORDER BY create_date ASC"; 
Note: See TracChangeset for help on using the changeset viewer.