no message
This commit is contained in:
parent
d32e10ba62
commit
7573187bd6
@ -611,11 +611,11 @@ class Dog extends Mod\Base {
|
|||||||
}
|
}
|
||||||
|
|
||||||
foreach ($this->aStrField as $sStrField) {
|
foreach ($this->aStrField as $sStrField) {
|
||||||
$aData[$sStrField] = $this->subStr($aData[$sStrField]);
|
$aData[$sStrField] = $this->subStr($aData[$sStrField] ?? '');
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($this->aJsonField as $sJsonField) {
|
foreach ($this->aJsonField as $sJsonField) {
|
||||||
$aData[$sJsonField] = json_decode($aData[$sJsonField]);
|
$aData[$sJsonField] = json_decode($aData[$sJsonField] ?? '');
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($this->aOutFormat as $sFormatField => $sFormatType) {
|
foreach ($this->aOutFormat as $sFormatField => $sFormatType) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user