Fix Warning in htdocs/adherents/card.php

Fix Warning: Creating default object from empty value in htdocs/adherents/card.php on line 1058
This commit is contained in:
daraelmin 2022-03-13 14:42:38 +01:00 committed by GitHub
parent 10bfb76ae9
commit 45df52343b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -789,8 +789,8 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action)) {
$object->country = $tmparray['label'];
}
$soc = new Societe($db);
if (!empty($socid)) {
$soc = new Societe($db);
if ($socid > 0) $soc->fetch($socid);
if (!($soc->id > 0)) {