From 5ad0bed23051724816293653c7f320e24d585c67 Mon Sep 17 00:00:00 2001 From: fredtempez Date: Thu, 27 Jan 2022 10:21:54 +0100 Subject: [PATCH] =?UTF-8?q?m=C3=A9thode=20non=20priv=C3=A9e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }