From d84a48e948b80ecca27e6b8d9e301a1489f33647 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 15 May 2014 09:28:35 +0200 Subject: pkgdb2 compatibility, ++, bump fedpkg cli version to 0.3.0-dev --- zoom.php | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) (limited to 'zoom.php') diff --git a/zoom.php b/zoom.php index 9f26f27..0f2b537 100644 --- a/zoom.php +++ b/zoom.php @@ -7,7 +7,7 @@ * * PHP version 5 * - * Copyright © 2010 Remi Collet + * Copyright © 2010-2014 Remi Collet * * This file is part of rpmphp. * @@ -29,7 +29,7 @@ * * @author Remi Collet * @author Johan Cwiklinski - * @copyright 2010 Remi Collet + * @copyright 2010-2014 Remi Collet * @license http://www.gnu.org/licenses/agpl-3.0-standalone.html AGPL License 3.0 or (at your option) any later version * @link http://github.com/remicollet/rpmphp/ * @since The begining of times. @@ -76,16 +76,7 @@ function getBranchPeople($params) } } if ( $people == 'people' && is_array($ret_tmp)) { - $tmp = array(); - foreach ( $ret_tmp as $r ) { - if (isset($r['aclOrder']['commit']['statuscode']) - && $r['aclOrder']['commit']['statuscode']==3 - ) { - $tmp[] = $r['username']; - } - } - sort($tmp); - $ret = implode($tmp, ', '); + $ret = implode($ret_tmp, ', '); } return $ret; } -- cgit