Qual: Removed missing variable from function call

This commit is contained in:
Raphaël Doursenaud 2014-04-23 16:04:04 +02:00
parent 1c7011523d
commit 036cc7472f

View File

@ -1430,7 +1430,7 @@ function dol_print_address($address, $htmlid, $mode, $id)
{ {
if ($hookmanager) { if ($hookmanager) {
$parameters = array('element' => $mode, 'id' => $id); $parameters = array('element' => $mode, 'id' => $id);
$reshook = $hookmanager->executeHooks('printAddress', $parameters, $address, $action); $reshook = $hookmanager->executeHooks('printAddress', $parameters, $address);
print $hookmanager->resPrint; print $hookmanager->resPrint;
} }
if (empty($reshook)) { if (empty($reshook)) {