Changeset 6972
- Timestamp:
- 2006/10/27 17:56:20 (20 years ago)
- Location:
- temp/trunk
- Files:
-
- 2 edited
-
data/class/GC_SendMail.php (modified) (2 diffs)
-
html/admin/batch/daily.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
temp/trunk/data/class/GC_SendMail.php
r6869 r6972 82 82 83 83 //¡¡¥á¡¼¥ëÁ÷¿® 84 if( mb_send_mail( $this->to, $this->subject, $this->body, $this->header, " -f" . $this->return_path ) ) {84 if( mb_send_mail( $this->to, $this->subject, $this->body, $this->header, "" . $this->return_path ) ) { 85 85 return true; 86 86 } … … 93 93 94 94 //¡¡¥á¡¼¥ëÁ÷¿® 95 if( mail( $this->to, $this->subject, $this->body, $this->header, " -f" . $this->return_path ) ) {95 if( mail( $this->to, $this->subject, $this->body, $this->header, "" . $this->return_path ) ) { 96 96 return true; 97 97 } -
temp/trunk/html/admin/batch/daily.php
r6971 r6972 329 329 } 330 330 } 331 331 332 332 $sqlval['create_date'] = "now()"; 333 333 $sqlval['order_date'] = $start; … … 339 339 } 340 340 341 /*342 function lfBatOrderAgeSub($sql, $start, $end, $start_age, $end_age, $member) {343 $objQuery = new SC_Query();344 345 if($start_age != NULL || $end_age != NULL) {346 $arrRet = $objQuery->getall($sql, array($start, $end, $start_age, $end_age));347 } else {348 $arrRet = $objQuery->getall($sql, array($start, $end));349 }350 $sqlval = $arrRet[0];351 352 // ¶õʸ»ú¤ò"0"¤ËÊÑ´¹353 foreach($sqlval as $key => $val) {354 if ($val == "") {355 $sqlval[$key] = "0";356 }357 }358 359 $sqlval['order_date'] = $start;360 $sqlval['start_age'] = "$start_age";361 $sqlval['end_age'] = "$end_age";362 $sqlval['member'] = "$member";363 364 $objQuery->insert("dtb_bat_order_daily_age", $sqlval);365 }366 */367 341 ?>
Note: See TracChangeset
for help on using the changeset viewer.
