Closed vchiriacmoldoweb closed 1 year ago
'translation' => htmlspecialchars($value)
can be changed to this: 'translation' => !is_null($value) ? htmlspecialchars($value) : null
can be changed to this: 'translation' => !is_null($value) ? htmlspecialchars($value) : null