summaryrefslogtreecommitdiff
path: root/docker/gen_config.php
diff options
context:
space:
mode:
authorlolcat <will@lolcat.ca>2024-06-20 03:52:36 +0000
committerlolcat <will@lolcat.ca>2024-06-20 03:52:36 +0000
commit0b68d6b2a9928d1b9dae389fbf5b95056e678be0 (patch)
tree7a45bc4692b9be077bda192641917d6921b3ced3 /docker/gen_config.php
parent40da72e8554e9526379397a8c68f2895292a79c2 (diff)
parenta0b3189198afff6632eee761b0d3a601ce09b43c (diff)
Merge pull request 'docker_tor_documentation' (#22) from docker_tor_documentation into master
Reviewed-on: https://git.lolcat.ca/lolcat/4get/pulls/22
Diffstat (limited to 'docker/gen_config.php')
-rw-r--r--docker/gen_config.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/gen_config.php b/docker/gen_config.php
index ceea117..b9e7730 100644
--- a/docker/gen_config.php
+++ b/docker/gen_config.php
@@ -66,10 +66,10 @@ foreach(($merged_config) as $key => $val){
// Handle case when original type of field is array and there is a type mismatch when a comma separted string is passed,
// then split on comma if string (and not numeric, boolean, null, etc)
//
- // except in the case where the inital value in default config is null. Assuming null
+ // except in the case where the inital value in default config is null or boolean. Assuming null and boolean
// in default config will be never be assigned an array
- if(gettype($from_config[$key]) != gettype($val) && !is_numeric($val) && !is_null($from_config[$key])) {
+ if(gettype($from_config[$key]) != gettype($val) && !is_numeric($val) && !is_null($from_config[$key]) && gettype($from_config[$key]) != "boolean") {
$stored_value = explode(",", $val);
}
$output = $output . "\tconst " . $key . " = " . type_to_string($stored_value) . ";\n";