Make sure to also detect their new copy right line
Ref owncloud/core#25518
This commit is contained in:
parent
3e7710c0d8
commit
28c8469ade
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue