mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Suppress PHP notice in process_account_form()
Add a check to remove a notice which is displayed after registration
since commit 03c6304
(Rework permission handling, 2014-07-15).
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
441498d896
commit
4b5f8da5be
1 changed files with 6 additions and 3 deletions
|
@ -141,10 +141,13 @@ function process_account_form($TYPE,$A,$U="",$T="",$S="",$E="",
|
|||
$error = __("The PGP key fingerprint is invalid.");
|
||||
}
|
||||
|
||||
$atype = account_from_sid($_COOKIE['AURSID']);
|
||||
if (($atype == "User" && $T > 1) || ($atype == "Trusted User" && $T > 2)) {
|
||||
$error = __("Cannot increase account permissions.");
|
||||
if (isset($_COOKIE['AURSID'])) {
|
||||
$atype = account_from_sid($_COOKIE['AURSID']);
|
||||
if (($atype == "User" && $T > 1) || ($atype == "Trusted User" && $T > 2)) {
|
||||
$error = __("Cannot increase account permissions.");
|
||||
}
|
||||
}
|
||||
|
||||
if (!$error && !array_key_exists($L, $SUPPORTED_LANGS)) {
|
||||
$error = __("Language is not currently supported.");
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue