Add empty locale extender to clear cache properly on enable/disable.

See https://github.com/flarum/core/pull/2020#issuecomment-616149583
This commit is contained in:
Alexander Skvortsov 2020-06-19 22:20:14 -04:00
parent 5719d62415
commit 3e9c764546
2 changed files with 3 additions and 1 deletions

View File

@ -26,5 +26,7 @@ return [
$config->Emoticons->add(':\'(', '😢');
$config->Emoticons->add(':O', '😮');
$config->Emoticons->add('>:(', '😡');
})
}),
new Extend\Locales(__DIR__.'/locale'),
];

View File