fixing ignorance of 'Not Committed Yet'

This commit is contained in:
Thomas Müller 2015-02-25 14:00:30 +01:00
parent a228b4ccba
commit 1b23f1367b
1 changed files with 4 additions and 1 deletions

View File

@ -131,7 +131,10 @@ EOD;
$authors = explode(PHP_EOL, $out);
$authors = array_filter($authors, function($author) {
return !in_array($author, ['', 'Not Committed Yet', 'Jenkins for ownCloud <owncloud-bot@tmit.eu>']);
return !in_array($author, [
'',
'Not Committed Yet <not.committed.yet>',
'Jenkins for ownCloud <owncloud-bot@tmit.eu>']);
});
$authors = array_map(function($author){
return " * @author $author";