diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-08-21 21:47:06 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-08-21 21:47:06 +0200 |
commit | a01877ca62c75b630059cd896d50be60111ae4e9 (patch) | |
tree | c47e0a9fea5999f015e3acbaedebb01a4c8ae52b | |
parent | 27a883c946ee524bb7930edfcfc6e8c153119929 (diff) | |
parent | 75bc58b05cf16a0f8c5e7ed1545033a5d8b8feba (diff) |
Merge branch 'develop' of https://github.com/waldmeister/codeigniter-reactor into develop
-rwxr-xr-x[-rw-r--r--] | system/helpers/url_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/url_helper.php b/system/helpers/url_helper.php index 9f4b85248..b565cbf55 100644..100755 --- a/system/helpers/url_helper.php +++ b/system/helpers/url_helper.php @@ -512,7 +512,7 @@ if ( ! function_exists('url_title')) $str = strtolower($str); } - return trim(stripslashes($str)); + return trim(trim(stripslashes($str)), $replace); } } |