diff options
Diffstat (limited to 'zoom.php')
-rw-r--r-- | zoom.php | 15 |
1 files changed, 3 insertions, 12 deletions
@@ -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 <unknown@unknwown.com> * @author Johan Cwiklinski <johan@x-tnd.be> - * @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; } |