diff options
author | Joas Schilling <coding@schilljs.com> | 2016-08-18 10:59:59 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-08-18 10:59:59 +0200 |
commit | 28c8469adebc5a54572a1adfe81e0921c2587ae6 (patch) | |
tree | b9faa09807aff79f2e364c794aef2354f6a6ab5f /build/license.php | |
parent | 3e7710c0d8e30dc9f020194959b657a89c08c095 (diff) | |
download | nextcloud-server-28c8469adebc5a54572a1adfe81e0921c2587ae6.tar.gz nextcloud-server-28c8469adebc5a54572a1adfe81e0921c2587ae6.zip |
Make sure to also detect their new copy right line
Ref owncloud/core#25518
Diffstat (limited to 'build/license.php')
-rw-r--r-- | build/license.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/license.php b/build/license.php index 5ada91a0f33..3f1fe41764a 100644 --- a/build/license.php +++ b/build/license.php @@ -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; } } |