Changeset 311


Ignore:
Timestamp:
Jan 31, 2008 9:54:31 AM (16 years ago)
Author:
quinn
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Email.inc.php

    r309 r311  
    271271        // Ensure all placeholders have been replaced. Find anything with {...} characters.
    272272        if (preg_match('/({[^}]+})/', $final_body, $unreplaced_match)) {
    273             $app->logMsg(sprintf('Cannot send email. Variables left unreplaced in template: %s', (isset($unreplaced_match[1]) ? $unreplaced_match[1] : '')), LOG_ERR, __FILE__, __LINE__);
     273            $app->logMsg(sprintf('Cannot send email. At least one variable left unreplaced in template: %s', (isset($unreplaced_match[1]) ? $unreplaced_match[1] : '')), LOG_ERR, __FILE__, __LINE__);
    274274            return false;
    275275        }
Note: See TracChangeset for help on using the changeset viewer.