Merge pull request #923 from nextcloud/owncloud-gmbh-owns-the-cr-now

Make sure to also detect their new copy right line
This commit is contained in:
Roeland Jago Douma 2016-08-18 13:04:20 +02:00 committed by GitHub
commit 0c539a4d5c
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ With help from many libraries and frameworks including:
while(!empty($lines)) {
$line = $lines[0];
array_shift($lines);
if (strpos($line, 'ownCloud, Inc') !== false) {
if (strpos($line, 'ownCloud, Inc') !== false || strpos($line, 'ownCloud GmbH') !== false) {
return true;
}
}