mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-11 01:23:43 +08:00
Bugfix: undefined $aKey
This commit is contained in:
parent
e0106a6e52
commit
7ca666f777
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ trait Localization
|
|||
$this->Plugins()->ReadLang($sLang, $aLang);
|
||||
}
|
||||
|
||||
return $aLang[$aKey] ?? $sKey;
|
||||
return $aLang[$sKey] ?? $sKey;
|
||||
}
|
||||
|
||||
public function compileLanguage(string $sLanguage, bool $bAdmin = false) : string
|
||||
|
|
Loading…
Reference in a new issue