summaryrefslogtreecommitdiffstats
path: root/web/template/pkg_details.php
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2015-06-14 09:56:40 +0200
committerLukas Fleischer <lfleischer@archlinux.org>2015-06-14 17:58:56 +0200
commitfb42ec696cac974ea87e9a24ba009b58a7fe2c13 (patch)
treed4bb647cee27e6db2eede6c9ee05346af927acb5 /web/template/pkg_details.php
parenta2f79eb2e1ff74e7d2403bf194a52b41cc7f3c0c (diff)
downloadaurweb-fb42ec696cac974ea87e9a24ba009b58a7fe2c13.tar.xz
Show co-maintainers next to maintainers in details
Implements FS#45313. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/template/pkg_details.php')
-rw-r--r--web/template/pkg_details.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/web/template/pkg_details.php b/web/template/pkg_details.php
index 7b75210..ae49e24 100644
--- a/web/template/pkg_details.php
+++ b/web/template/pkg_details.php
@@ -15,6 +15,7 @@ $keywords = pkgbase_get_keywords($base_id);
$submitter = username_from_id($row["SubmitterUID"]);
$maintainer = username_from_id($row["MaintainerUID"]);
+$comaintainers = pkgbase_get_comaintainers($base_id);
$packager = username_from_id($row["PackagerUID"]);
$votes = $row['NumVotes'];
@@ -293,7 +294,7 @@ if (has_credential(CRED_PKGBASE_SET_KEYWORDS, array($row["MaintainerUID"]))):
</tr>
<tr>
<th><?= __('Maintainer') .': ' ?></th>
- <td><?= html_format_username($maintainer) ?></td>
+ <td><?= html_format_maintainers($maintainer, $comaintainers) ?></td>
</tr>
<tr>
<th><?= __('Last Packager') .': ' ?></th>