summaryrefslogtreecommitdiffstats
path: root/web/html/register.php
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2015-11-10 19:49:13 +0100
committerLukas Fleischer <lfleischer@archlinux.org>2016-02-07 10:52:05 +0100
commitaa5e58db81b8a243e03d0f08925c2d1f34c82304 (patch)
tree22b086afdf5dc6173f5964342be0f09f3d266571 /web/html/register.php
parent3412de21d32708b44d1fb3011649734e3cc67d9b (diff)
downloadaur-aa5e58db81b8a243e03d0f08925c2d1f34c82304.tar.gz
aur-aa5e58db81b8a243e03d0f08925c2d1f34c82304.tar.xz
Add global comment notification setting
Add a configuration option to the account edit page that allows for globally enabling/disabling package base comment notifications. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/html/register.php')
-rw-r--r--web/html/register.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/html/register.php b/web/html/register.php
index f8400a37..f58fb258 100644
--- a/web/html/register.php
+++ b/web/html/register.php
@@ -23,7 +23,7 @@ if (in_request("Action") == "NewAccount") {
"new", "NewAccount", in_request("U"), 1, 0,
in_request("E"), in_request("H"), '', '', in_request("R"),
in_request("L"), in_request("I"), in_request("K"),
- in_request("PK"));
+ in_request("PK"), 0, in_request("CN"));
print $message;
@@ -31,7 +31,7 @@ if (in_request("Action") == "NewAccount") {
display_account_form("NewAccount", in_request("U"), 1, 0,
in_request("E"), in_request("H"), '', '', in_request("R"),
in_request("L"), in_request("I"), in_request("K"),
- in_request("PK"));
+ in_request("PK"), 0, in_request("CN"));
}
} else {
print '<p>' . __("Use this form to create an account.") . '</p>';