diff --git a/core/modules/content_translation/src/ContentTranslationManager.php b/core/modules/content_translation/src/ContentTranslationManager.php index 03eb69f..10e5378 100644 --- a/core/modules/content_translation/src/ContentTranslationManager.php +++ b/core/modules/content_translation/src/ContentTranslationManager.php @@ -71,7 +71,7 @@ public function isEnabled($entity_type_id, $bundle = NULL) { $bundles = !empty($bundle) ? array($bundle) : array_keys($this->entityManager->getBundleInfo($entity_type_id)); foreach ($bundles as $bundle) { $config = ContentLanguageSettings::loadByEntityTypeBundle($entity_type_id, $bundle); - if ($config->getThirdPartySetting('content_translation', 'enabled', false)) { + if ($config->getThirdPartySetting('content_translation', 'enabled', FALSE)) { $enabled = TRUE; break; }