diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-06-03 16:37:50 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-12-27 12:42:12 +0100 |
commit | 253e76d8cc718acef6bab802c76c4a70623b59cc (patch) | |
tree | df58aad0e2846690f12a23b56e1a5472602d6721 /web/html/account.php | |
parent | 1af375828f7c4ef11e63e09e1070a9f77b679d71 (diff) | |
download | aur-253e76d8cc718acef6bab802c76c4a70623b59cc.tar.gz aur-253e76d8cc718acef6bab802c76c4a70623b59cc.tar.xz |
Add support for adding SSH public keys to profiles
Users can now add an SSH public key on the account edit page. This will
later be used to authenticate users via SSH.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html/account.php')
-rw-r--r-- | web/html/account.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/web/html/account.php b/web/html/account.php index c1a1cd7c..3dc8ef01 100644 --- a/web/html/account.php +++ b/web/html/account.php @@ -59,7 +59,7 @@ if (isset($_COOKIE["AURSID"])) { display_account_form("UpdateAccount", $row["Username"], $row["AccountTypeID"], $row["Suspended"], $row["Email"], "", "", $row["RealName"], $row["LangPreference"], - $row["IRCNick"], $row["PGPKey"], + $row["IRCNick"], $row["PGPKey"], $row["SSHPubKey"], $row["InactivityTS"] ? 1 : 0, $row["ID"]); } else { print __("You do not have permission to edit this account."); @@ -98,7 +98,8 @@ if (isset($_COOKIE["AURSID"])) { in_request("U"), in_request("T"), in_request("S"), in_request("E"), in_request("P"), in_request("C"), in_request("R"), in_request("L"), in_request("I"), - in_request("K"), in_request("J"), in_request("ID")); + in_request("K"), in_request("PK"), in_request("J"), + in_request("ID")); } } else { if (has_credential(CRED_ACCOUNT_SEARCH)) { |