summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--system/helpers/string_helper.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/helpers/string_helper.php b/system/helpers/string_helper.php
index 04c3a592a..011be2333 100644
--- a/system/helpers/string_helper.php
+++ b/system/helpers/string_helper.php
@@ -44,8 +44,8 @@
*/
function trim_slashes($str)
{
- return preg_replace("|^/*(.+?)/*$|", "\\1", $str);
-}
+ return trim($str, '/');
+}
// ------------------------------------------------------------------------