diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-11-09 23:13:15 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-11-09 23:13:15 +0100 |
commit | 766a7fb1b46a506e92d62ed0b76e0e0e3e6958a5 (patch) | |
tree | 81e1a5fc1d52839f8735acbba23064027fece2ac /Zotlabs | |
parent | 40a7446e3e1d52fa015ac9f2ce45b0c2b8df520f (diff) | |
parent | 40c625158f879c51bac8c1e2271eb0505dff991d (diff) | |
download | volse-hubzilla-766a7fb1b46a506e92d62ed0b76e0e0e3e6958a5.tar.gz volse-hubzilla-766a7fb1b46a506e92d62ed0b76e0e0e3e6958a5.tar.bz2 volse-hubzilla-766a7fb1b46a506e92d62ed0b76e0e0e3e6958a5.zip |
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Cloud_tiles.php | 4 | ||||
-rw-r--r-- | Zotlabs/Module/Wiki.php | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Zotlabs/Module/Cloud_tiles.php b/Zotlabs/Module/Cloud_tiles.php index 45124cdfa..da551904f 100644 --- a/Zotlabs/Module/Cloud_tiles.php +++ b/Zotlabs/Module/Cloud_tiles.php @@ -11,6 +11,10 @@ class Cloud_tiles extends \Zotlabs\Web\Controller { else $_SESSION['cloud_tiles'] = 1; + if(local_channel()) { + set_pconfig(local_channel(),'system','cloud_tiles',$_SESSION['cloud_tiles']); + } + goaway(z_root() . '/' . hex2bin(argv(1))); } 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']) { |