diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-06-12 07:14:12 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-06-12 07:14:12 -0400 |
commit | 43055e0199fb66927a2bffbedd902d11aaa24f8a (patch) | |
tree | 378bbaee1d43c3de2bb45bec89a39a3434d432a9 /include/wiki.php | |
parent | 1789c3242adcf11fe37f0ef0ec6180966853eeda (diff) | |
download | volse-hubzilla-43055e0199fb66927a2bffbedd902d11aaa24f8a.tar.gz volse-hubzilla-43055e0199fb66927a2bffbedd902d11aaa24f8a.tar.bz2 volse-hubzilla-43055e0199fb66927a2bffbedd902d11aaa24f8a.zip |
Apply purify_html to page content before preview and save to prevent JavaScript code injection.
Diffstat (limited to 'include/wiki.php')
-rw-r--r-- | include/wiki.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wiki.php b/include/wiki.php index f0785d549..4aa3fc1b4 100644 --- a/include/wiki.php +++ b/include/wiki.php @@ -279,7 +279,7 @@ function wiki_page_history($arr) { function wiki_save_page($arr) { $pageUrlName = ((array_key_exists('pageUrlName',$arr)) ? $arr['pageUrlName'] : ''); - $content = ((array_key_exists('content',$arr)) ? $arr['content'] : ''); + $content = ((array_key_exists('content',$arr)) ? purify_html($arr['content']) : ''); $resource_id = ((array_key_exists('resource_id',$arr)) ? $arr['resource_id'] : ''); $w = wiki_get_wiki($resource_id); if (!$w['path']) { |