From 5e6702f47a7f7926e9df424485ab2aad6631c625 Mon Sep 17 00:00:00 2001 From: Daniel Kraus Date: Fri, 5 Jan 2024 07:56:56 +0100 Subject: [PATCH] Update copyright year. --- README.md | 2 +- includes/Config.php | 2 +- includes/Extension.php | 2 +- includes/Linker.php | 2 +- includes/Magic.php | 2 +- includes/Source.php | 2 +- includes/Special.php | 2 +- includes/Splitter.php | 2 +- includes/Target.php | 2 +- includes/Targets.php | 2 +- linktitles-cli.php | 2 +- tests/phpunit/ConfigTest.php | 2 +- tests/phpunit/ExtensionTest.php | 2 +- tests/phpunit/LinkerTest.php | 2 +- tests/phpunit/SplitterTest.php | 2 +- tests/phpunit/TargetTest.php | 2 +- tests/phpunit/TargetsTest.php | 2 +- tests/phpunit/TestCase.php | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index b4c363d..cf58a7e 100644 --- a/README.md +++ b/README.md @@ -541,7 +541,7 @@ use Ubuntu). ## License -Copyright 2012-2022 Daniel Kraus (GitHub: @bovender) +Copyright 2012-2024 Daniel Kraus (GitHub: @bovender) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/includes/Config.php b/includes/Config.php index fdd5995..e9bd5d9 100644 --- a/includes/Config.php +++ b/includes/Config.php @@ -3,7 +3,7 @@ /** * The LinkTitles\Config class holds configuration for the LinkTitles extension. * - * Copyright 2012-2022 Daniel Kraus ('bovender') + * Copyright 2012-2024 Daniel Kraus ('bovender') * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or diff --git a/includes/Extension.php b/includes/Extension.php index 6b87871..0edcd70 100644 --- a/includes/Extension.php +++ b/includes/Extension.php @@ -3,7 +3,7 @@ /** * The LinkTitles\Extension class provides event handlers and entry points for the extension. * - * Copyright 2012-2022 Daniel Kraus ('bovender') + * Copyright 2012-2024 Daniel Kraus ('bovender') * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/includes/Linker.php b/includes/Linker.php index 0332f78..13428ff 100644 --- a/includes/Linker.php +++ b/includes/Linker.php @@ -3,7 +3,7 @@ /** * The LinkTitles\Linker class does the heavy linking for the extension. * - * Copyright 2012-2022 Daniel Kraus ('bovender') + * Copyright 2012-2024 Daniel Kraus ('bovender') * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/includes/Magic.php b/includes/Magic.php index f3bcd4a..649256f 100644 --- a/includes/Magic.php +++ b/includes/Magic.php @@ -1,6 +1,6 @@ ('bovender') + * Copyright 2012-2024 Daniel Kraus ('bovender') * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/includes/Source.php b/includes/Source.php index 9be3f6b..c966987 100644 --- a/includes/Source.php +++ b/includes/Source.php @@ -3,7 +3,7 @@ /** * The LinkTitles\Source represents a Wiki page to which links may be added. * - * Copyright 2012-2022 Daniel Kraus ('bovender') + * Copyright 2012-2024 Daniel Kraus ('bovender') * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/includes/Special.php b/includes/Special.php index 5d12834..dbcef6f 100644 --- a/includes/Special.php +++ b/includes/Special.php @@ -3,7 +3,7 @@ /** * Provides a special page for the LinkTitles extension. * - * Copyright 2012-2022 Daniel Kraus ('bovender') + * Copyright 2012-2024 Daniel Kraus ('bovender') * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/includes/Splitter.php b/includes/Splitter.php index 27684fc..a8fcfa8 100644 --- a/includes/Splitter.php +++ b/includes/Splitter.php @@ -3,7 +3,7 @@ /** * The Splitter class caches a regular expression that delimits text to be parsed. * - * Copyright 2012-2022 Daniel Kraus ('bovender') + * Copyright 2012-2024 Daniel Kraus ('bovender') * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/includes/Target.php b/includes/Target.php index e203959..eb42076 100644 --- a/includes/Target.php +++ b/includes/Target.php @@ -3,7 +3,7 @@ /** * The LinkTitles\Target represents a Wiki page that is a potential link target. * - * Copyright 2012-2022 Daniel Kraus ('bovender') + * Copyright 2012-2024 Daniel Kraus ('bovender') * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/includes/Targets.php b/includes/Targets.php index 88e3107..cf62205 100644 --- a/includes/Targets.php +++ b/includes/Targets.php @@ -3,7 +3,7 @@ /** * The LinkTitles\Targets class. * - * Copyright 2012-2022 Daniel Kraus ('bovender') + * Copyright 2012-2024 Daniel Kraus ('bovender') * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/linktitles-cli.php b/linktitles-cli.php index 37930b8..e3d7b41 100755 --- a/linktitles-cli.php +++ b/linktitles-cli.php @@ -4,7 +4,7 @@ /** * LinkTitles command line interface (CLI)/maintenance script * - * Copyright 2012-2022 Daniel Kraus @bovender + * Copyright 2012-2024 Daniel Kraus @bovender * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/phpunit/ConfigTest.php b/tests/phpunit/ConfigTest.php index 737b6cf..b38d8ea 100644 --- a/tests/phpunit/ConfigTest.php +++ b/tests/phpunit/ConfigTest.php @@ -1,7 +1,7 @@ ('bovender') + * Copyright 2012-2024 Daniel Kraus ('bovender') * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/phpunit/ExtensionTest.php b/tests/phpunit/ExtensionTest.php index b12053f..fa9bf3e 100644 --- a/tests/phpunit/ExtensionTest.php +++ b/tests/phpunit/ExtensionTest.php @@ -1,7 +1,7 @@ ('bovender') + * Copyright 2012-2024 Daniel Kraus ('bovender') * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/phpunit/LinkerTest.php b/tests/phpunit/LinkerTest.php index b858775..efc4431 100644 --- a/tests/phpunit/LinkerTest.php +++ b/tests/phpunit/LinkerTest.php @@ -3,7 +3,7 @@ /** * Unit tests for the Linker class, i.e. the core functionality * - * Copyright 2012-2022 Daniel Kraus ('bovender') + * Copyright 2012-2024 Daniel Kraus ('bovender') * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/phpunit/SplitterTest.php b/tests/phpunit/SplitterTest.php index 1610326..db826df 100644 --- a/tests/phpunit/SplitterTest.php +++ b/tests/phpunit/SplitterTest.php @@ -1,7 +1,7 @@ ('bovender') + * Copyright 2012-2024 Daniel Kraus ('bovender') * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/phpunit/TargetTest.php b/tests/phpunit/TargetTest.php index ceb16ae..b34ec38 100644 --- a/tests/phpunit/TargetTest.php +++ b/tests/phpunit/TargetTest.php @@ -1,7 +1,7 @@ ('bovender') + * Copyright 2012-2024 Daniel Kraus ('bovender') * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/phpunit/TargetsTest.php b/tests/phpunit/TargetsTest.php index b636505..4502c7a 100644 --- a/tests/phpunit/TargetsTest.php +++ b/tests/phpunit/TargetsTest.php @@ -1,7 +1,7 @@ ('bovender') + * Copyright 2012-2024 Daniel Kraus ('bovender') * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/phpunit/TestCase.php b/tests/phpunit/TestCase.php index d96e888..179661c 100644 --- a/tests/phpunit/TestCase.php +++ b/tests/phpunit/TestCase.php @@ -1,7 +1,7 @@ ('bovender') + * Copyright 2012-2024 Daniel Kraus ('bovender') * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by