diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-11-11 20:01:03 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-11-11 20:01:03 +0100 |
commit | 55995b0494843ef826dc38f862e9dced34ae0d96 (patch) | |
tree | 7ed97a627211a0e515369a22765e5d98ed1b90b1 /Zotlabs/Widget/Wiki_pages.php | |
parent | eb17598254476974814fa0d4a6f84d854a1ae833 (diff) | |
download | volse-hubzilla-55995b0494843ef826dc38f862e9dced34ae0d96.tar.gz volse-hubzilla-55995b0494843ef826dc38f862e9dced34ae0d96.tar.bz2 volse-hubzilla-55995b0494843ef826dc38f862e9dced34ae0d96.zip |
fix wiki pages not updating after creating new page
Diffstat (limited to 'Zotlabs/Widget/Wiki_pages.php')
-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 ac44b8d88..39d4b1717 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'], |