[Qual] Replaced deprecated dol_clone by native clone

This commit is contained in:
Raphaël Doursenaud
2015-09-24 16:32:48 +02:00
parent ea7384cf68
commit 9f2545b95d
33 changed files with 48 additions and 47 deletions

View File

@@ -397,7 +397,7 @@ function dol_clone($object)
{
dol_syslog(__FUNCTION__ . " is deprecated", LOG_WARNING);
$myclone=clone($object);
$myclone = clone $object;
return $myclone;
}