summaryrefslogtreecommitdiffstats
path: root/system/helpers
diff options
context:
space:
mode:
authorDavid Behler <mail@davidbehler.de>2011-08-21 15:03:47 +0200
committerDavid Behler <mail@davidbehler.de>2011-08-21 15:03:47 +0200
commit75bc58b05cf16a0f8c5e7ed1545033a5d8b8feba (patch)
tree510ce405b447eacd0f1ca42de3a3d47509eadda5 /system/helpers
parent07b53422f8d61e6b0b7e6479b0de92ad1a1ce05e (diff)
Fixed problem with needless seperator at begin/end of string
Diffstat (limited to 'system/helpers')
-rwxr-xr-x[-rw-r--r--]system/helpers/url_helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/url_helper.php b/system/helpers/url_helper.php
index d0516cee6..0431e0b4b 100644..100755
--- a/system/helpers/url_helper.php
+++ b/system/helpers/url_helper.php
@@ -509,7 +509,7 @@ if ( ! function_exists('url_title'))
$str = strtolower($str);
}
- return trim(stripslashes($str));
+ return trim(trim(stripslashes($str)), $replace);
}
}