diff options
author | zotlabs <mike@macgirvin.com> | 2017-11-08 21:19:03 -0800 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2017-11-11 20:27:17 +0100 |
commit | cf4e2b295307adfe7c97cae6fd923d7c4eeed8ac (patch) | |
tree | 2797441b1ec33355251c3867b5d22d70eddb17e4 | |
parent | f3d3ec57442b61604a259f48c4409422ac08ad94 (diff) | |
download | volse-hubzilla-cf4e2b295307adfe7c97cae6fd923d7c4eeed8ac.tar.gz volse-hubzilla-cf4e2b295307adfe7c97cae6fd923d7c4eeed8ac.tar.bz2 volse-hubzilla-cf4e2b295307adfe7c97cae6fd923d7c4eeed8ac.zip |
unable to change permissions on wiki with space in name
-rw-r--r-- | Zotlabs/Module/Wiki.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Wiki.php b/Zotlabs/Module/Wiki.php index d6a01af11..2d2d8e2b7 100644 --- a/Zotlabs/Module/Wiki.php +++ b/Zotlabs/Module/Wiki.php @@ -494,7 +494,7 @@ class Wiki extends \Zotlabs\Web\Controller { return; //not reached } - $wiki = Zlib\NativeWiki::exists_by_name($owner['channel_id'], $arr['urlName']); + $wiki = Zlib\NativeWiki::exists_by_name($owner['channel_id'], urldecode($arr['urlName'])); if($wiki['resource_id']) { |