Skip to content

Commit

Permalink
fix: php warning on migration (#29466)
Browse files Browse the repository at this point in the history
  • Loading branch information
FHenry committed Apr 27, 2024
1 parent c892182 commit 1c76738
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/core/modules/modFacture.class.php
Expand Up @@ -487,8 +487,8 @@ public function __construct($db)

// Exports
//--------
$uselocaltax1 = $mysoc->localtax1_assuj;
$uselocaltax2 = $mysoc->localtax2_assuj;
$uselocaltax1 = $mysoc->localtax1_assuj ?? null;
$uselocaltax2 = $mysoc->localtax2_assuj ?? null;

$r = 1;

Expand Down

0 comments on commit 1c76738

Please sign in to comment.