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:
parent
10bfb76ae9
commit
45df52343b
@ -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)) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user