diff options
author | Marcel Korpel <marcel.korpel@gmail.com> | 2015-07-21 22:53:55 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-08-08 12:59:24 +0200 |
commit | c7025054c686f1f1a877e2d2938c39c79fb62580 (patch) | |
tree | 242fc17e5946c2a18281d67daa6dab2885f8cecc /web/html | |
parent | 41b6cff7c0e8459ef3783b9c3447ff43c0672a13 (diff) | |
download | aurweb-c7025054c686f1f1a877e2d2938c39c79fb62580.tar.xz |
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>
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/commentedit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/commentedit.php b/web/html/commentedit.php index 83d86dd..2a0628e 100644 --- a/web/html/commentedit.php +++ b/web/html/commentedit.php @@ -17,5 +17,5 @@ if (!isset($base_id) || !has_credential(CRED_COMMENT_EDIT, array($user_id)) || i } html_header(__("Edit comment")); -include('pkg_comment_form.php'); +include('pkg_comment_box.php'); html_footer(AURWEB_VERSION); |