vpietri / magento2-developer-quickdevbar

Developer Toolbar for Magento2
549 stars 127 forks source link

Deprecated Functionality: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/sportys/app/code/ADM/QuickDevBar/Helper/Translate.php on line 162 #71

Closed vchiriacmoldoweb closed 1 year ago

vchiriacmoldoweb commented 1 year ago
                'translation' => htmlspecialchars($value)

can be changed to this: 'translation' => !is_null($value) ? htmlspecialchars($value) : null