Make sure to also detect their new copy right line

Ref owncloud/core#25518
This commit is contained in:
Joas Schilling 2016-08-18 10:59:59 +02:00
parent 3e7710c0d8
commit 28c8469ade
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
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;
}
}