1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-06-05 22:09:38 +02:00

Introduzione modulo fasce orarie e modulo eventi

This commit is contained in:
Luca
2022-03-25 19:26:50 +01:00
parent c8215016e1
commit 07636b7e7a
15 changed files with 751 additions and 3 deletions

View File

@@ -185,7 +185,7 @@ if (!function_exists('replace')) {
*/
function replace($string, $array)
{
return str_replace(array_keys($array), array_values($array), $string);
return str_replace(array_keys($array), array_values($array), (string) $string);
}
}