Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-08-18 11:59:59 +0300
committerJoas Schilling <coding@schilljs.com>2016-08-18 11:59:59 +0300
commit28c8469adebc5a54572a1adfe81e0921c2587ae6 (patch)
treeb9faa09807aff79f2e364c794aef2354f6a6ab5f /build/license.php
parent3e7710c0d8e30dc9f020194959b657a89c08c095 (diff)
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.php2
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;
}
}