aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module
diff options
context:
space:
mode:
authorDM42.Net (Matt Dent) <dentm42@dm42.net>2018-11-13 20:19:12 -0500
committerDM42.Net (Matt Dent) <dentm42@dm42.net>2018-11-13 20:19:12 -0500
commitce8073d25eeddd212276656cc2d5c1df9474223e (patch)
treeb83ae37bce8e92bb2b47b9a30b6ddcaf764d0537 /Zotlabs/Module
parent35e66770be6ca93c9090cdab221e6c33a410a569 (diff)
parent31f4d9066b6bffcbe539f293bf814c418f1523cf (diff)
downloadvolse-hubzilla-ce8073d25eeddd212276656cc2d5c1df9474223e.tar.gz
volse-hubzilla-ce8073d25eeddd212276656cc2d5c1df9474223e.tar.bz2
volse-hubzilla-ce8073d25eeddd212276656cc2d5c1df9474223e.zip
Merge remote-tracking branch red/master into patch-20181113a. Add Mike's fix to search xss and Superblock fix.
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r--Zotlabs/Module/Search.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Module/Search.php b/Zotlabs/Module/Search.php
index e520c671d..272bbdac1 100644
--- a/Zotlabs/Module/Search.php
+++ b/Zotlabs/Module/Search.php
@@ -6,7 +6,7 @@ class Search extends \Zotlabs\Web\Controller {
function init() {
if(x($_REQUEST,'search'))
- \App::$data['search'] = $_REQUEST['search'];
+ \App::$data['search'] = escape_tags($_REQUEST['search']);
}
@@ -46,12 +46,12 @@ class Search extends \Zotlabs\Web\Controller {
if(x(\App::$data,'search'))
$search = trim(\App::$data['search']);
else
- $search = ((x($_GET,'search')) ? trim(rawurldecode($_GET['search'])) : '');
+ $search = ((x($_GET,'search')) ? trim(escape_tags(rawurldecode($_GET['search']))) : '');
$tag = false;
if(x($_GET,'tag')) {
$tag = true;
- $search = ((x($_GET,'tag')) ? trim(rawurldecode($_GET['tag'])) : '');
+ $search = ((x($_GET,'tag')) ? trim(escape_tags(rawurldecode($_GET['tag']))) : '');
}
$static = ((array_key_exists('static',$_REQUEST)) ? intval($_REQUEST['static']) : 0);