mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Add "Enable notifications" checkbox in "Add Comment" form
Currently, it is a little to easy to forget to enable notifications for a package after leaving a comment, thus never being notified of a reply. Even though the "Enable notifications" link is on the same page, it is not part of the flow for posting a new comment, and so, easy to miss. Most web forums and comment systems include a checkbox to enable notifications when posting for the first time in a thread. This patch implements this in aurweb, as well. Signed-off-by: Eli Schwartz <eschwartz@archlinux.org>
This commit is contained in:
parent
e0d821352f
commit
e3ca3c96e5
3 changed files with 14 additions and 0 deletions
|
@ -120,6 +120,9 @@ if (check_token()) {
|
|||
} elseif (current_action("do_AddComment")) {
|
||||
$uid = uid_from_sid($_COOKIE["AURSID"]);
|
||||
list($ret, $output) = pkgbase_add_comment($base_id, $uid, $_REQUEST['comment']);
|
||||
if ($ret && isset($_REQUEST['enable_notifications'])) {
|
||||
list($ret, $output) = pkgbase_notify(array($base_id));
|
||||
}
|
||||
$fragment = '#news';
|
||||
} elseif (current_action("do_EditComment")) {
|
||||
list($ret, $output) = pkgbase_edit_comment($_REQUEST['comment']);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue