diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-11-11 20:01:03 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2017-11-11 20:28:46 +0100 |
commit | 0fef599341192e0b22b63361c5a77e2f43b44836 (patch) | |
tree | 7e8c30ae00485ce909c279150c5cf265765a8da3 | |
parent | 124e08efdeaa920970046be1cd5d1fea9c573e9f (diff) | |
download | volse-hubzilla-0fef599341192e0b22b63361c5a77e2f43b44836.tar.gz volse-hubzilla-0fef599341192e0b22b63361c5a77e2f43b44836.tar.bz2 volse-hubzilla-0fef599341192e0b22b63361c5a77e2f43b44836.zip |
fix wiki pages not updating after creating new page
-rw-r--r-- | Zotlabs/Widget/Wiki_pages.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Widget/Wiki_pages.php b/Zotlabs/Widget/Wiki_pages.php index 6e3a22551..2aad8008f 100644 --- a/Zotlabs/Widget/Wiki_pages.php +++ b/Zotlabs/Widget/Wiki_pages.php @@ -12,7 +12,7 @@ class Wiki_pages { if(! $arr['resource_id']) { $c = channelx_by_nick(argv(1)); - $w = \Zotlabs\Lib\NativeWiki::exists_by_name($c['channel_id'],argv(2)); + $w = \Zotlabs\Lib\NativeWiki::exists_by_name($c['channel_id'],urldecode(argv(2))); $arr = array( 'resource_id' => $w['resource_id'], 'channel_id' => $c['channel_id'], |