Erase login IP addresses after seven days
[aur.git] / web / html / comaintainers.php
blob9733558d7fc96ec8e0b46591976295b8c8970ff9
1 <?php
3 set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
5 include_once("aur.inc.php");
6 include_once("pkgbasefuncs.inc.php");
8 if (!isset($base_id) || !has_credential(CRED_PKGBASE_EDIT_COMAINTAINERS, array(pkgbase_maintainer_uid($base_id)))) {
9 header('Location: /');
10 exit();
13 html_header(__("Manage Co-maintainers"));
14 $users = pkgbase_get_comaintainers($base_id);
15 include('comaintainers_form.php');
16 html_footer(AURWEB_VERSION);