mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03: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);
|
$this->Plugins()->ReadLang($sLang, $aLang);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $aLang[$aKey] ?? $sKey;
|
return $aLang[$sKey] ?? $sKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function compileLanguage(string $sLanguage, bool $bAdmin = false) : string
|
public function compileLanguage(string $sLanguage, bool $bAdmin = false) : string
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue