From 07d0fa49e7742a987d3c0cad41fc314511755231 Mon Sep 17 00:00:00 2001 From: Thijs Kinkhorst <thijs@kinkhorst.com> Date: Sat, 27 Feb 2021 14:24:15 +0000 Subject: [PATCH] Make config.php template ASCII text. There's little to no added value for UTF-8 in this file, while some editors do cause trouble when editing those files (e.g. adding BOM on Windows). This just avoids that hassle where we can. Closes: #1432 --- config-templates/config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config-templates/config.php b/config-templates/config.php index 1cefa4014..389485e92 100644 --- a/config-templates/config.php +++ b/config-templates/config.php @@ -765,7 +765,7 @@ $config = [ * ], * * establishing that if a translation for the "no" language code is - * not available, we look for translations in "nb" (Norwegian Bokmål), + * not available, we look for translations in "nb", * and so on, in that order. */ 'priorities' => [ @@ -986,7 +986,7 @@ $config = [ 'type' => 'saml20-idp-SSO', ], - /* When called without parameters, it will fallback to filter attributes ‹the old way› + /* When called without parameters, it will fallback to filter attributes 'the old way' * by checking the 'attributes' parameter in metadata on IdP hosted and SP remote. */ 50 => 'core:AttributeLimit', -- GitLab