Update document.php

This commit is contained in:
Laurent Destailleur 2019-12-17 12:14:30 +01:00 committed by GitHub
parent bb6523b75d
commit 03bb395ad8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -256,11 +256,11 @@ if ($object->id > 0)
$morehtmlref.='<br>';
// Third party
if ($projectstatic->thirdparty->id > 0) {
$morehtmlref .= $langs->trans("ThirdParty") . ': ';
$morehtmlref .= $projectstatic->thirdparty->getNomUrl(1);
$morehtmlref .= '</div>';
}
$morehtmlref .= $langs->trans("ThirdParty") . ': ';
if (is_object($projectstatic->thirdparty) && $projectstatic->thirdparty->id > 0) {
$morehtmlref .= $projectstatic->thirdparty->getNomUrl(1);
}
$morehtmlref .= '</div>';
}
dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref, $param);