mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-19 10:23:16 +09:00
Fix #1049 disappearing zero values in extravar
This commit is contained in:
parent
8db2ac16c7
commit
f8c42cc10b
2 changed files with 4 additions and 4 deletions
|
|
@ -81,7 +81,7 @@ class documentModel extends document
|
|||
$output = $this->getDocumentExtraVarsFromDB($document_srls);
|
||||
foreach($output->data as $key => $val)
|
||||
{
|
||||
if(!$val->value)
|
||||
if(strval($val->value) === '')
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue