mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Add link to flag OOD comment
Implements: FS#46546 Signed-off-by: Mark Weiman <mark.weiman@markzz.com> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
parent
76a589257e
commit
e9fe1a9eb1
6 changed files with 84 additions and 1 deletions
19
web/html/pkgflagcomment.php
Normal file
19
web/html/pkgflagcomment.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
|
||||
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
|
||||
|
||||
include_once("aur.inc.php");
|
||||
include_once("pkgbasefuncs.inc.php");
|
||||
|
||||
set_lang();
|
||||
check_sid();
|
||||
|
||||
if (!isset($base_id)) {
|
||||
header('Location: /');
|
||||
exit();
|
||||
}
|
||||
|
||||
html_header(__("Flag Comment"));
|
||||
$message = pkgbase_get_flag_comment($base_id);
|
||||
include('flag_comment.php');
|
||||
html_footer(AURWEB_VERSION);
|
Loading…
Add table
Add a link
Reference in a new issue