summaryrefslogtreecommitdiffstats
path: root/fedcli.php
diff options
context:
space:
mode:
Diffstat (limited to 'fedcli.php')
-rwxr-xr-xfedcli.php9
1 files changed, 2 insertions, 7 deletions
diff --git a/fedcli.php b/fedcli.php
index 0588caf..f0bd914 100755
--- a/fedcli.php
+++ b/fedcli.php
@@ -5,7 +5,7 @@
*
* fedcli.php is a command line tools to test FedoraClient clmsses
*
- * Copyright (C) 2010-2013 Remi Collet
+ * Copyright (C) 2010-2014 Remi Collet
* http://github.com/remicollet/rpmphp.
*
* Inspired from python-fedora
@@ -132,12 +132,7 @@ function Package() {
echo $branch.":\t".$pack['owner'];
$i=0;
- $tmp = array();
- foreach ($pack['people'] as $user) {
- if (isset($user['aclOrder']['commit']['statuscode']) && $user['aclOrder']['commit']['statuscode']==3) {
- $tmp[] = $user['username'];
- }
- }
+ $tmp = $pack['people'];
if (count($tmp)) {
sort($tmp);
echo " (".implode($tmp, ', ').")\n";