I found a typo in the install file (emabled -> enabled):
$config->set('third_party_settings', [
'content_translation' => [
'emabled' => TRUE,
],
]);
$config->save();
}
It should be looks like here
$config->set('third_party_settings', [
'content_translation' => [
'enabled' => TRUE,
],
]);
$config->save();
}
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | typoFix-3125632-2.patch | 451 bytes | csakiistvan |
Comments
Comment #2
csakiistvanComment #3
csakiistvanComment #5
tikaszvince commentedThank you your contribution. This will be part of the next release