diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-10-25 13:19:27 +0300 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-10-25 13:19:27 +0300 |
commit | 7f941840cbfbf014017e953223c81d6b47fd150e (patch) | |
tree | a6cea1e395d67649c6ad18e562396fe0ce632d41 | |
parent | b4670f12a567fdaf1a52d938dde487e162bd7301 (diff) | |
download | wekan-7f941840cbfbf014017e953223c81d6b47fd150e.tar.gz wekan-7f941840cbfbf014017e953223c81d6b47fd150e.tar.bz2 wekan-7f941840cbfbf014017e953223c81d6b47fd150e.zip |
- 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 !
-rwxr-xr-x | snap-src/bin/wekan-read-settings | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/snap-src/bin/wekan-read-settings b/snap-src/bin/wekan-read-settings index 5370c554..236667e9 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" |