diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-10-30 15:28:07 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-10-30 15:28:07 +0100 |
commit | 936a8fe74fdefe099fceb2c93c2eab22370d8915 (patch) | |
tree | caef50b87f9994dac50ce6b5f97f27dd44df6337 /system/libraries/Email.php | |
parent | 7676c2d6761cb3cdeccf005c2a30140f0ba3ced5 (diff) | |
parent | e1e956d79384d42a6b1f8d792c9db131874e60c5 (diff) |
Merge pull request #1945 from GDmac/develop
Fix #1938
Diffstat (limited to 'system/libraries/Email.php')
-rw-r--r-- | system/libraries/Email.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/system/libraries/Email.php b/system/libraries/Email.php index edca303ff..7280466a5 100644 --- a/system/libraries/Email.php +++ b/system/libraries/Email.php @@ -770,6 +770,9 @@ class CI_Email { $body = str_replace(str_repeat("\n", $i), "\n\n", $body); } + // Reduce multiple spaces + $str = preg_replace('| +|', ' ', $str); + return ($this->wordwrap) ? $this->word_wrap($body, 76) : $body; @@ -792,15 +795,15 @@ class CI_Email { $charlim = empty($this->wrapchars) ? 76 : $this->wrapchars; } - // Reduce multiple spaces - $str = preg_replace('| +|', ' ', $str); - // Standardize newlines if (strpos($str, "\r") !== FALSE) { $str = str_replace(array("\r\n", "\r"), "\n", $str); } + // Reduce multiple spaces at end of line + $str = preg_replace('| +\n|', "\n", $str); + // If the current word is surrounded by {unwrap} tags we'll // strip the entire chunk and replace it with a marker. $unwrap = array(); |