summaryrefslogtreecommitdiffstats
path: root/zoom.php
diff options
context:
space:
mode:
Diffstat (limited to 'zoom.php')
-rw-r--r--zoom.php11
1 files changed, 7 insertions, 4 deletions
diff --git a/zoom.php b/zoom.php
index f20c730..8b00270 100644
--- a/zoom.php
+++ b/zoom.php
@@ -75,13 +75,16 @@ function getBranchPeople($params)
$ret_tmp = $fedpkg[$branch]['people'];
}
}
- if ( $people == 'people') {
+ if ( $people == 'people' && is_array($ret_tmp)) {
+ $tmp = array();
foreach ( $ret_tmp as $r ) {
- if ( $ret !== null ) {
- $ret .= ', ';
+ if (isset($r['aclOrder']['commit']['statuscode'])
+ && $r['aclOrder']['commit']['statuscode']==3) {
+ $tmp[] = $r['username'];
}
- $ret .= $r['username'];
}
+ sort($tmp);
+ $ret = implode($tmp, ', ');
}
return $ret;
}