diff options
Diffstat (limited to 'fedcli.php')
-rwxr-xr-x | fedcli.php | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -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"; |