Browse Source

Make sure to also detect their new copy right line

Ref owncloud/core#25518
tags/v11.0RC2
Joas Schilling 7 years ago
parent
commit
28c8469ade
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      build/license.php

+ 1
- 1
build/license.php 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;
}
}

Loading…
Cancel
Save