Ignore:
Timestamp:
Apr 11, 2007 2:54:34 AM (17 years ago)
Author:
quinn
Message:

Added mb_language() functin to App::start for use of mb_send_mail. Other minor fix.

File:
1 edited

Legend:

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

    r248 r249  
    686686function removeSignature($signed_val)
    687687{
     688    if (empty($signed_val) || mb_strpos($signed_val, '-') === false) {
     689        return '';
     690    }
    688691    return mb_substr($signed_val, 0, mb_strrpos($signed_val, '-'));
    689692}
Note: See TracChangeset for help on using the changeset viewer.