resolve old lng-references

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2022-05-02 08:56:39 +02:00
parent 7b6d5f1642
commit 00a3424f65
16 changed files with 41 additions and 24 deletions

View File

@@ -296,5 +296,9 @@ elseif ($page == 'error') {
// 9 = checksum mismatch
// 10 = <php-7.4
// 11 = enable_webupdate = false
Response::standardError('autoupdate_' . $errno);
$errmsg = 'autoupdate_' . $errno;
if ($errno == 3) {
$errmsg = 'customized_version';
}
Response::standardError($errmsg);
}