mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
For use in the new RPC interface to edit comments, the form shouldn't always print a header. Create a new template pkg_comment_box.php that prints form and box, change template pkg_comment_form.php to only print the form. Signed-off-by: Marcel Korpel <marcel.korpel@gmail.com> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
23 lines
915 B
PHP
23 lines
915 B
PHP
<form action="<?= get_pkgbase_uri($pkgbase_name) ?>" method="post">
|
|
<fieldset>
|
|
<?php
|
|
if (isset($_REQUEST['comment']) && check_token()) {
|
|
echo '<p>' . __('Comment has been added.') . '</p>';
|
|
}
|
|
?>
|
|
<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") ?>" />
|
|
</p>
|
|
</fieldset>
|
|
</form>
|