From 7f941840cbfbf014017e953223c81d6b47fd150e Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 25 Oct 2018 13:19:27 +0300 Subject: [PATCH] - Additional fix to [Impossible to connect to LDAP if UserDN contain space(s)](https://github.com/wekan/wekan/issues/1970). Thanks to Akuket and xet7 ! --- snap-src/bin/wekan-read-settings | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snap-src/bin/wekan-read-settings b/snap-src/bin/wekan-read-settings index 5370c5548..236667e96 100755 --- a/snap-src/bin/wekan-read-settings +++ b/snap-src/bin/wekan-read-settings @@ -12,7 +12,7 @@ do value=$(snapctl get ${!snappy_key}) if [ "x$value" == "x" ]; then echo -e "$key=${!default_value} (default value)" - export $key=${!default_value} + export $key="${!default_value}" else echo -e "$key=$value" export $key="$value"