Skip to content

Commit

Permalink
Additional fix for change set 665e9fd
Browse files Browse the repository at this point in the history
  • Loading branch information
mystralkk committed Jan 7, 2017
1 parent d6b11b4 commit 1a650a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/classes/Mail.php
Expand Up @@ -20,7 +20,7 @@ class Mail
public static function stripControlCharacters($item)
{
if (is_array($item)) {
return array_map('\Geeklog\Mail\stripControlCharacters', $item);
return array_map('\Geeklog\Mail::stripControlCharacters', $item);
} else {
$item = substr($item, 0, strcspn($item, self::NEW_LINE));
$item = preg_replace('/[[:cntrl:]]/', '', $item);
Expand Down

0 comments on commit 1a650a6

Please sign in to comment.