* Fix bug 32769.

This commit is contained in:
tianshujie
2023-03-09 17:13:46 +08:00
parent 665422c7ce
commit 9ecacd2ad1
+2 -2
View File
@@ -536,13 +536,13 @@ class devModel extends model
break;
}
foreach($customeds as $type => $customed)
foreach($customeds as $customType => $customed)
{
if(is_array($customed))
{
foreach($customed as $row)
{
$langKey = $type == 'featureBar' ? "featureBar-{$method}_" : $row->section . '_';
$langKey = $customType == 'featureBar' ? "featureBar-{$method}_" : $row->section . '_';
$rowKey = $row->key;
$customedLangs[$langKey . $rowKey] = $row->value;
}