From 1da1d52158201cfe1e8a53c4f905546e3e01dcc7 Mon Sep 17 00:00:00 2001 From: Nico Hoffmann Date: Sun, 1 Sep 2024 12:50:05 +0200 Subject: [PATCH 1/2] Use Symfony YAML handler --- site/config/config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/site/config/config.php b/site/config/config.php index 4122079..a466c5f 100644 --- a/site/config/config.php +++ b/site/config/config.php @@ -9,4 +9,5 @@ */ return [ 'debug' => true, + 'yaml.handler' => 'symfony', ]; From ca9b38f303d6e0ef4b552892a3d862d875d086dd Mon Sep 17 00:00:00 2001 From: Nico Hoffmann Date: Tue, 10 Sep 2024 21:54:06 +0200 Subject: [PATCH 2/2] Add comment for config file --- site/config/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/config/config.php b/site/config/config.php index a466c5f..39d671f 100644 --- a/site/config/config.php +++ b/site/config/config.php @@ -9,5 +9,5 @@ */ return [ 'debug' => true, - 'yaml.handler' => 'symfony', + 'yaml.handler' => 'symfony', // already makes use of the more modern Symfony YAML parser: https://getkirby.com/docs/reference/system/options/yaml (will become the default in a future Kirby version) ];