Skip to content

Commit

Permalink
zero could be a value
Browse files Browse the repository at this point in the history
  • Loading branch information
rycks committed Jan 10, 2025
1 parent e1a47ed commit e9eb22f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/admin/dict.php
Original file line number Diff line number Diff line change
Expand Up @@ -2076,7 +2076,7 @@
//var_dump($fieldlist);
$class = '';
$showfield = 1;
$valuetoshow = empty($obj->$value) ? '' : $obj->$value;
$valuetoshow = !isset($obj->$value) ? '' : $obj->$value;
$titletoshow = '';

if ($value == 'entity') {
Expand Down

0 comments on commit e9eb22f

Please sign in to comment.