diff options
author | vlakoff <vlakoff@gmail.com> | 2014-05-20 10:32:35 +0200 |
---|---|---|
committer | vlakoff <vlakoff@gmail.com> | 2014-05-20 10:32:35 +0200 |
commit | 2a8560c9c62c16a2f044f37bfd4adf152c191ee5 (patch) | |
tree | a9a0fadb67f0b4e99917e7a81e574f7a9ecb744c /system | |
parent | 9e9d86ba77b6aead9daec720bb1444841527e0c7 (diff) |
Regex fixes
* Replace wrong "wwww." with "www."
* Escape dot
Diffstat (limited to 'system')
-rw-r--r-- | system/helpers/text_helper.php | 2 | ||||
-rw-r--r-- | system/libraries/Email.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/system/helpers/text_helper.php b/system/helpers/text_helper.php index ca19ab98b..7e15c1934 100644 --- a/system/helpers/text_helper.php +++ b/system/helpers/text_helper.php @@ -460,7 +460,7 @@ if ( ! function_exists('word_wrap')) while (mb_strlen($line) > $charlim) { // If the over-length word is a URL we won't wrap it - if (preg_match('!\[url.+\]|://|wwww.!', $line)) + if (preg_match('!\[url.+\]|://|www\.!', $line)) { break; } diff --git a/system/libraries/Email.php b/system/libraries/Email.php index 63b7dc31c..2595032c9 100644 --- a/system/libraries/Email.php +++ b/system/libraries/Email.php @@ -1203,7 +1203,7 @@ class CI_Email { do { // If the over-length word is a URL we won't wrap it - if (preg_match('!\[url.+\]|://|wwww.!', $line)) + if (preg_match('!\[url.+\]|://|www\.!', $line)) { break; } |