Only translate if we need the string

This translation was done in each call. Over and over and over again.
All while it was probably not used in 99.99999% of the cases. A small
gain. But still.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2020-07-08 15:12:01 +02:00
parent 32927fd470
commit 76eb793f9b
No known key found for this signature in database
GPG Key ID: F941078878347C0C
1 changed files with 1 additions and 2 deletions

View File

@ -851,7 +851,6 @@ class OC_Util {
];
$missingDependencies = [];
$invalidIniSettings = [];
$moduleHint = $l->t('Please ask your server administrator to install the module.');
$iniWrapper = \OC::$server->getIniWrapper();
foreach ($dependencies['classes'] as $class => $module) {
@ -890,7 +889,7 @@ class OC_Util {
foreach ($missingDependencies as $missingDependency) {
$errors[] = [
'error' => $l->t('PHP module %s not installed.', [$missingDependency]),
'hint' => $moduleHint
'hint' => $l->t('Please ask your server administrator to install the module.'),
];
$webServerRestart = true;
}