Changeset 1349 for branches/1.2


Ignore:
Timestamp:
03/19/10 02:14:31 (3 years ago)
Author:
shibuya246
Message:

[branch 1.2] removed _ON from end of CACHE constants

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.2/libs/EmailFunctions.php

    r1336 r1349  
    6464        if (!$this->from) { $this->from = SITE_NAME . ' <' . SITE_EMAIL . '>'; } 
    6565         
    66         if (SMTP_ON == 'true') { 
     66        if (SMTP == 'true') { 
    6767            // note: this overwrites headers passed to this function: 
    6868            $this->headers = array ('From' => $this->from, 'To' => $this->to['To'], 'Subject' => $this->subject); 
     
    9696                break; 
    9797            default: 
    98                 if (SMTP_ON == 'true') { 
     98                if (SMTP == 'true') { 
    9999                    $this->doSmtpEmail(); 
    100100                } else { 
Note: See TracChangeset for help on using the changeset viewer.