diff options
author | Remi Collet <fedora@famillecollet.com> | 2011-02-05 11:09:56 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2011-02-05 11:09:56 +0100 |
commit | ad09d023481f03b6dc835bf86f2999e40ab63b37 (patch) | |
tree | 16618319228978a42372402d5b8fa53544a97de0 /scripts | |
parent | eb425e1bee76cb6ec7196506954229e77eea82ef (diff) |
fix co-maintainer list : only approved ones
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/rpmphp.js | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/scripts/rpmphp.js b/scripts/rpmphp.js index 91f4fb9..ba3411d 100644 --- a/scripts/rpmphp.js +++ b/scripts/rpmphp.js @@ -39,15 +39,7 @@ function initZoomJS(name) if ( _owner_cell ) { _owner_cell.empty().text(_data.owner); _maintainers_cell = $('#pkgdb_' + k + '_maintainers'); - _maintainers = ''; - if ( _data.people != null ) { - $.each( - _data.people, - function(){ - _maintainers += this.username + ', '; - } - ) - } + _maintainers = _data.people; _maintainers_cell.empty().text(_maintainers.slice(0, -2)); } } |