mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Implements: FS#46546 Signed-off-by: Mark Weiman <mark.weiman@markzz.com> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
19 lines
366 B
PHP
19 lines
366 B
PHP
<?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);
|