diff options
Diffstat (limited to 'web/html/pkgflagcomment.php')
-rw-r--r-- | web/html/pkgflagcomment.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/web/html/pkgflagcomment.php b/web/html/pkgflagcomment.php new file mode 100644 index 0000000..98680ef --- /dev/null +++ b/web/html/pkgflagcomment.php @@ -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); |