footer logic for custom props
This commit is contained in:
parent
78bf39fcd1
commit
3ac3f6006c
1 changed files with 3 additions and 3 deletions
|
|
@ -234,9 +234,9 @@ class Design extends BaseDesign
|
|||
$variable = sprintf('%s%s', '$', $property);
|
||||
|
||||
if (
|
||||
!is_null($this->entity->{$property}) ||
|
||||
!empty($this->entity->{$property}) ||
|
||||
$this->entity->{$property} !== 0
|
||||
!is_null($this->entity->{$property}) &&
|
||||
!empty($this->entity->{$property}) &&
|
||||
$this->entity->{$property} != 0
|
||||
) {
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue