mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
only search the license header for @copyright statements
This commit is contained in:
parent
3f4db2d02b
commit
d3a11e9cf1
1 changed files with 3 additions and 2 deletions
|
|
@ -228,9 +228,10 @@ With help from many libraries and frameworks including:
|
|||
|
||||
private function getCopyrightNotices($path, $file) {
|
||||
$licenseHeaderEndsAtLine = (int)trim(shell_exec("grep -n '*/' $path | head -n 1 | cut -d ':' -f 1"));
|
||||
$lineByLine = explode(PHP_EOL, $file, $licenseHeaderEndsAtLine);
|
||||
$lineByLine = explode(PHP_EOL, $file, $licenseHeaderEndsAtLine + 1);
|
||||
$copyrightNotice = [];
|
||||
foreach ($lineByLine as $line) {
|
||||
$licensePart = array_slice($lineByLine, 0, $licenseHeaderEndsAtLine);
|
||||
foreach ($licensePart as $line) {
|
||||
if (strpos($line, '@copyright') !== false) {
|
||||
$copyrightNotice[] = $line;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue