[aur-dev] [PATCH] Drop the message when no changes were made to an account
Johannes Löthberg
johannes at kyriasis.com
Sat Jun 27 14:26:07 UTC 2015
When no changes has been made to the account there's no need for a
message, and it is no longer applicable since the setting of SSH keys is
done in a separate function now.
Reported-by: Alexis Chotard <alexis.horgix.chotard at gmail.com>
Signed-off-by: Johannes Löthberg <johannes at kyriasis.com>
---
web/lib/acctfuncs.inc.php | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/web/lib/acctfuncs.inc.php b/web/lib/acctfuncs.inc.php
index 417ee6d..be5d0e2 100644
--- a/web/lib/acctfuncs.inc.php
+++ b/web/lib/acctfuncs.inc.php
@@ -350,10 +350,7 @@ function process_account_form($TYPE,$A,$U="",$T="",$S="",$E="",$P="",$C="",
account_set_ssh_keys($UID, $ssh_keys, $ssh_fingerprints);
- if (!$result) {
- print __("No changes were made to the account, %s%s%s.",
- "<strong>", htmlspecialchars($U,ENT_QUOTES), "</strong>");
- } else {
+ if ($result) {
print __("The account, %s%s%s, has been successfully modified.",
"<strong>", htmlspecialchars($U,ENT_QUOTES), "</strong>");
}
--
2.4.4
More information about the aur-dev
mailing list