mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
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>
24 lines
1.1 KiB
PHP
24 lines
1.1 KiB
PHP
<form action="<?= get_pkgbase_uri($pkgbase_name) ?>" method="post">
|
|
<fieldset>
|
|
<div>
|
|
<input type="hidden" name="action" value="<?= (isset($comment_id)) ? "do_EditComment" : "do_AddComment" ?>" />
|
|
<input type="hidden" name="ID" value="<?= intval($base_id) ?>" />
|
|
<?php if (isset($comment_id)): ?>
|
|
<input type="hidden" name="comment_id" value="<?= $comment_id ?>" />
|
|
<?php endif; ?>
|
|
<input type="hidden" name="token" value="<?= htmlspecialchars($_COOKIE['AURSID']) ?>" />
|
|
</div>
|
|
<p>
|
|
<textarea id="id_comment" name="comment" cols="80" rows="10"><?= (isset($comment_id)) ? htmlspecialchars($comment) : "" ?></textarea>
|
|
</p>
|
|
<p>
|
|
<input type="submit" value="<?= (isset($comment_id)) ? __("Save") : __("Add Comment") ?>" />
|
|
<?php if (!isset($comment_id) && !pkgbase_user_notify($uid, $base_id)): ?>
|
|
<span class="comment-enable-notifications">
|
|
<input type="checkbox" name="enable_notifications" id="id_enable_notifications" />
|
|
<label for="id_enable_notifications"><?= __("Enable notifications") ?></label>
|
|
</span>
|
|
<?php endif; ?>
|
|
</p>
|
|
</fieldset>
|
|
</form>
|