mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Split pkg_comment_form.php so the outer box is not always included
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>
This commit is contained in:
parent
41b6cff7c0
commit
c7025054c6
5 changed files with 7 additions and 7 deletions
4
web/template/pkg_comment_box.php
Normal file
4
web/template/pkg_comment_box.php
Normal file
|
@ -0,0 +1,4 @@
|
|||
<div id="generic-form" class="box">
|
||||
<h2><?= (isset($comment_id)) ? __('Edit comment for: %s', htmlspecialchars($pkgbase_name)) : __("Add Comment"); ?></h2>
|
||||
<?php include 'pkg_comment_form.php' ?>
|
||||
</div>
|
|
@ -1,5 +1,3 @@
|
|||
<div id="generic-form" class="box">
|
||||
<h2><?= (isset($comment_id)) ? __('Edit comment for: %s', htmlspecialchars($pkgbase_name)) : __("Add Comment"); ?></h2>
|
||||
<form action="<?= get_pkgbase_uri($pkgbase_name) ?>" method="post">
|
||||
<fieldset>
|
||||
<?php
|
||||
|
@ -23,5 +21,3 @@ if (isset($_REQUEST['comment']) && check_token()) {
|
|||
</p>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue