From 28c8469adebc5a54572a1adfe81e0921c2587ae6 Mon Sep 17 00:00:00 2001
From: Joas Schilling <coding@schilljs.com>
Date: Thu, 18 Aug 2016 10:59:59 +0200
Subject: [PATCH] Make sure to also detect their new copy right line

Ref owncloud/core#25518
---
 build/license.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
 				}
 			}
-- 
GitLab