Changeset 13398 for branches/beta


Ignore:
Timestamp:
2007/05/25 09:11:30 (17 years ago)
Author:
nakanishi
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/beta/html/admin/mail/index.php

    r13241 r13398  
    383383    $dtb_send_history = array(); 
    384384     
    385     $dtb_send_history["send_id"] = $objQuery->nextval('dtb_send_history', 'send_id'); 
    386     $dtb_send_history["mail_method"] = $arrData['mail_method']; 
     385    if(DB_TYPE == "pgsql"){ 
     386        $dtb_send_history["send_id"] = $objQuery->nextval('dtb_send_history', 'send_id'); 
     387    } 
     388    $dtb_send_history["mail_method"] = $arrData['mail_method']; 
    387389    $dtb_send_history["subject"] = $arrData['subject']; 
    388390    $dtb_send_history["body"] = $arrData['body']; 
Note: See TracChangeset for help on using the changeset viewer.