Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 53b01911 authored by Jan Kellermann's avatar Jan Kellermann
Browse files

Check for array type.

parent 11ef813d
No related branches found
No related tags found
No related merge requests found
......@@ -482,7 +482,7 @@ class TranslationManager {
foreach ($search_keys as $key) {
// Check 1st level values.
if (isset($config_item[$key]) && strlen($config_item[$key]) > 0) {
if (isset($config_item[$key]) && !is_array($config_item[$key]) && !empty($config_item[$key])) {
if ('name' === $key && in_array('label', array_keys($translatable_fields), TRUE)) {
// Do not translate 'name' if 'label' already present.
// Workaround for drupal/admin/config/media/image-styles translation.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment