From 4885a60c5cf56cf7cd9f871c014b1148e8b78fe6 Mon Sep 17 00:00:00 2001 From: Sonja Broda Date: Fri, 10 Dec 2021 12:45:40 +0100 Subject: [PATCH 1/5] Fix passing null to urldecode in notes controller --- site/controllers/notes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/controllers/notes.php b/site/controllers/notes.php index 2063568..0180e91 100644 --- a/site/controllers/notes.php +++ b/site/controllers/notes.php @@ -11,7 +11,7 @@ */ return function ($page) { - $tag = urldecode(param('tag')); + $tag = urldecode(param('tag') ?? ''); /** * We use the collection helper to fetch the notes collection defined in `/site/collections/notes.php` * From 89a69627459933deb51cb879d893acc1fa065f30 Mon Sep 17 00:00:00 2001 From: Lukas Bestle Date: Sun, 12 Dec 2021 20:11:25 +0100 Subject: [PATCH 2/5] Update composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index fb9cde1..aaa82d1 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "source": "https://github.com/getkirby/starterkit" }, "require": { - "php": ">=7.4.0 <8.1.0", + "php": ">=7.4.0 <8.2.0", "getkirby/cms": "^3.6" }, "scripts": { From 8a23d1a5a068b501d899015a11178b27fac0f7d3 Mon Sep 17 00:00:00 2001 From: Anselm Hannemann Date: Tue, 21 Dec 2021 08:25:23 +0100 Subject: [PATCH 3/5] =?UTF-8?q?Fix=20typo=20in=20the=20photographer=20fiel?= =?UTF-8?q?d=E2=80=99s=20label?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- site/blueprints/files/image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/blueprints/files/image.yml b/site/blueprints/files/image.yml index 2514902..64bf18e 100644 --- a/site/blueprints/files/image.yml +++ b/site/blueprints/files/image.yml @@ -29,7 +29,7 @@ columns: label: Alternative Text type: text photographer: - label: Photogapher + label: Photographer type: text width: 2/3 license: From 4a013b5e861d8292ac611636f640490c0db0f57a Mon Sep 17 00:00:00 2001 From: Ahmet Bora Date: Mon, 27 Dec 2021 17:37:26 +0300 Subject: [PATCH 4/5] Fix HTML markups --- site/templates/about.php | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/site/templates/about.php b/site/templates/about.php index e15a092..f09fbf2 100644 --- a/site/templates/about.php +++ b/site/templates/about.php @@ -28,17 +28,17 @@

Get in contact

-

Address

+

Address

address()->kt() ?>
-

Email

+

Email

email()) ?>

-

Phone

+

Phone

phone()) ?>

-

On the web

+

On the web

    social()->toStructure() as $social): ?>
  • url(), $social->platform()) ?>
  • @@ -48,6 +48,4 @@
- - From 822b434bb564b9dac7eb3bc1053ca34747af26e4 Mon Sep 17 00:00:00 2001 From: Sonja Broda Date: Wed, 12 Jan 2022 10:58:35 +0100 Subject: [PATCH 5/5] Fix links in comments, fixes #37 --- site/collections/notes.php | 2 +- site/controllers/notes.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/site/collections/notes.php b/site/collections/notes.php index a40e79f..269f43a 100644 --- a/site/collections/notes.php +++ b/site/collections/notes.php @@ -4,7 +4,7 @@ * if you need to reuse the same set up pages, files or users in multiple places across your site. * * More about collections: - * http://getkirby.test/docs/guide/templates/collections + * https://getkirby.com/docs/guide/templates/collections */ return function () { return page('notes') diff --git a/site/controllers/notes.php b/site/controllers/notes.php index 0180e91..86696ac 100644 --- a/site/controllers/notes.php +++ b/site/controllers/notes.php @@ -16,7 +16,7 @@ return function ($page) { * We use the collection helper to fetch the notes collection defined in `/site/collections/notes.php` * * More about collections: - * http://getkirby.test/docs/guide/templates/collections + * https://getkirby.com/docs/guide/templates/collections */ $notes = collection('notes');