Browse Source

- 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 !
Lauri Ojansivu 6 năm trước cách đây
mục cha
commit
7f941840cb
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      snap-src/bin/wekan-read-settings

+ 1 - 1
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"