mirror of
https://github.com/flarum/core.git
synced 2025-10-12 23:44:27 +02:00
Use more precise regex to prevent some translations being compiled unnecessarily
This commit is contained in:
@@ -308,9 +308,7 @@ abstract class AbstractClientController extends AbstractHtmlController
|
||||
}
|
||||
|
||||
$filtered = array_filter(array_keys($translations), function ($id) {
|
||||
if (preg_match($this->translations, $id)) {
|
||||
return true;
|
||||
}
|
||||
return preg_match($this->translations, $id);
|
||||
});
|
||||
|
||||
return array_only($translations, $filtered);
|
||||
|
Reference in New Issue
Block a user