Merge pull request #2887 from owncloud/l10n-caching

L10N: cache the result of findLanguage
remotes/origin/stable6
Bart Visscher 2013-04-16 09:11:33 +07:00
commit 8d1db84ed1
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;
}
}