summaryrefslogtreecommitdiffstats
path: root/lib/public/util.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/util.php')
-rw-r--r--lib/public/util.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/util.php b/lib/public/util.php
index 07bc47c18b4..50fe9185006 100644
--- a/lib/public/util.php
+++ b/lib/public/util.php
@@ -544,7 +544,7 @@ class Util {
* @deprecated 8.2.0 Use substr_replace() instead.
*/
public static function mb_substr_replace($string, $replacement, $start, $length = null, $encoding = 'UTF-8') {
- return(\OC_Helper::mb_substr_replace($string, $replacement, $start, $length, $encoding));
+ return substr_replace($string, $replacement, $start, $length);
}
/**
@@ -560,7 +560,7 @@ class Util {
* @deprecated 8.2.0 Use str_replace() instead.
*/
public static function mb_str_replace($search, $replace, $subject, $encoding = 'UTF-8', &$count = null) {
- return(\OC_Helper::mb_str_replace($search, $replace, $subject, $encoding, $count));
+ return str_replace($search, $replace, $subject, $count);
}
/**