-L10N: cache the result of findLanguage
This commit is contained in:
parent
6cf36b4f81
commit
2180a4c420
1 changed files with 6 additions and 0 deletions
|
@ -298,10 +298,16 @@ class OC_L10N{
|
|||
$temp = explode(';', $i);
|
||||
$temp[0] = str_replace('-', '_', $temp[0]);
|
||||
if( ($key = array_search($temp[0], $available)) !== false) {
|
||||
if (is_null($app)) {
|
||||
self::$language = $available[$key];
|
||||
}
|
||||
return $available[$key];
|
||||
}
|
||||
foreach($available as $l) {
|
||||
if ( $temp[0] == substr($l, 0, 2) ) {
|
||||
if (is_null($app)) {
|
||||
self::$language = $l;
|
||||
}
|
||||
return $l;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue