commit | 75bc58b05cf16a0f8c5e7ed1545033a5d8b8feba | [log] [tgz] |
---|---|---|
author | David Behler <mail@davidbehler.de> | Sun Aug 21 15:03:47 2011 +0200 |
committer | David Behler <mail@davidbehler.de> | Sun Aug 21 15:03:47 2011 +0200 |
tree | 510ce405b447eacd0f1ca42de3a3d47509eadda5 | |
parent | 07b53422f8d61e6b0b7e6479b0de92ad1a1ce05e [diff] |
Fixed problem with needless seperator at begin/end of string
diff --git a/system/helpers/url_helper.php b/system/helpers/url_helper.php old mode 100644 new mode 100755 index d0516ce..0431e0b --- a/system/helpers/url_helper.php +++ b/system/helpers/url_helper.php
@@ -509,7 +509,7 @@ $str = strtolower($str); } - return trim(stripslashes($str)); + return trim(trim(stripslashes($str)), $replace); } }