summaryrefslogtreecommitdiffstats
path: root/fedcli.php
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2014-05-15 09:28:35 +0200
committerRemi Collet <fedora@famillecollet.com>2014-05-15 09:28:35 +0200
commitd84a48e948b80ecca27e6b8d9e301a1489f33647 (patch)
tree545bfa05b80ad94c38375661383fbd35d53ca1bd /fedcli.php
parent01deba7406b28fb5c7d7a2bc5a9b1b9ae954009e (diff)
pkgdb2 compatibility, ++, bump fedpkg cli version to 0.3.0-dev
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";