Skip to content

Commit

Permalink
Fix invalid check in DbUtils
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierstoval authored and cedric-anne committed Sep 18, 2024
1 parent e6aaf71 commit 1624d31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DbUtils.php
Original file line number Diff line number Diff line change
Expand Up @@ -1392,7 +1392,7 @@ public function getTreeValueCompleteName($table, $ID, $withcomment = false, $tra
}
$acomment .= $country;
}
if (trim($acomment != '')) {
if (trim($acomment) != '') {
$comment .= "<span class='b'>&nbsp;" . __('Address:') . "</span> " . $acomment . "<br/>";
}
}
Expand Down

0 comments on commit 1624d31

Please sign in to comment.