summaryrefslogtreecommitdiffstats
path: root/system/helpers/text_helper.php
diff options
context:
space:
mode:
authorvlakoff <vlakoff@gmail.com>2014-05-20 10:32:35 +0200
committervlakoff <vlakoff@gmail.com>2014-05-20 10:32:35 +0200
commit2a8560c9c62c16a2f044f37bfd4adf152c191ee5 (patch)
treea9a0fadb67f0b4e99917e7a81e574f7a9ecb744c /system/helpers/text_helper.php
parent9e9d86ba77b6aead9daec720bb1444841527e0c7 (diff)
Regex fixes
* Replace wrong "wwww." with "www." * Escape dot
Diffstat (limited to 'system/helpers/text_helper.php')
-rw-r--r--system/helpers/text_helper.php2
1 files changed, 1 insertions, 1 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;
}