FIX: propal createFrom hook: undefined parameter attached

This commit is contained in:
Marc de Lima Lucio 2019-07-16 13:59:00 +02:00
parent 8b0b824471
commit 464bda996c

View File

@ -1316,9 +1316,9 @@ class Propal extends CommonObject
// Hook of thirdparty module // Hook of thirdparty module
if (is_object($hookmanager)) if (is_object($hookmanager))
{ {
$parameters=array('objFrom'=>$this,'clonedObj'=>$clonedObj); $parameters=array('objFrom'=>$this,'clonedObj'=>$object);
$action=''; $action='';
$reshook=$hookmanager->executeHooks('createFrom',$parameters,$clonedObj,$action); // Note that $action and $object may have been modified by some hooks $reshook=$hookmanager->executeHooks('createFrom',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0) $error++; if ($reshook < 0) $error++;
} }
} }