aboutsummaryrefslogtreecommitdiffhomepage
path: root/settings.global.ini
diff options
context:
space:
mode:
authorwinter2025-01-19 14:54:24 +0000
committerwinter2025-01-19 14:54:24 +0000
commit3fe0b3e7938bdb3781fec13784c0b7f943a899c0 (patch)
treed0a3e73b00da531694b7f61fc7c1a1c2643862c9 /settings.global.ini
parent2de5125d750a24d85797c5c7bb15fefdc0206511 (diff)
fix boolean settings having the wrong default value
Diffstat (limited to 'settings.global.ini')
-rw-r--r--settings.global.ini7
1 files changed, 5 insertions, 2 deletions
diff --git a/settings.global.ini b/settings.global.ini
index 79699d1..dbad00e 100644
--- a/settings.global.ini
+++ b/settings.global.ini
@@ -1,3 +1,6 @@
+# please put double quotes around everything. php does weird things to unquoted
+# ini values sometimes and it's not worth the debugging headache
+
[instance.name]
name = "Instance name"
description = "Shown in the page header and instance information"
@@ -11,5 +14,5 @@ default = "A Digitigrade instance"
[instance.openRegistrations]
name = "Open registrations"
description = "Allow new users to sign up?"
-default = false
-type = boolean
+default = "false"
+type = "boolean"