diff --git a/core/core.php b/core/core.php index be85158e..c6822982 100644 --- a/core/core.php +++ b/core/core.php @@ -1187,7 +1187,7 @@ class common { * @param int count nombres d'occurrences * @return array avec les valeurs remplacées. */ - private function recursive_array_replace ($find, $replace, $array, &$count) { + public function recursive_array_replace ($find, $replace, $array, &$count) { if (!is_array($array)) { return str_replace($find, $replace, $array, $count); }