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

Minor bugfixing. Added some admin css tweaks to 1.1dev.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.1dev/lib/Email.inc.php

    r292 r310  
    260260        // Ensure all placeholders have been replaced. Find anything with {...} characters.
    261261        if (preg_match('/({[^}]+})/', $final_body, $unreplaced_match)) {
    262             logMsg(sprintf('Cannot send email. Variables left unreplaced in template: %s', (isset($unreplaced_match[1]) ? $unreplaced_match[1] : '')), LOG_ERR, __FILE__, __LINE__);
     262            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__);
    263263            return false;
    264264        }
Note: See TracChangeset for help on using the changeset viewer.