From: Thomas Müller Date: Wed, 25 Feb 2015 13:00:30 +0000 (+0100) Subject: fixing ignorance of 'Not Committed Yet' X-Git-Tag: v8.1.0alpha1~164^2~4 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1b23f1367bafb8118b7f84df4b233d33903dea9b;p=nextcloud-server.git fixing ignorance of 'Not Committed Yet' --- diff --git a/build/license.php b/build/license.php index bd3bce15a43..322ce2e5e47 100644 --- a/build/license.php +++ b/build/license.php @@ -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 ']); + return !in_array($author, [ + '', + 'Not Committed Yet ', + 'Jenkins for ownCloud ']); }); $authors = array_map(function($author){ return " * @author $author";