aboutsummaryrefslogtreecommitdiff
path: root/search/groups.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-06-30 16:43:41 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-06-30 16:43:41 +0000
commitdc4e11800a15fa47235373cfbe625199fd4bd7ac (patch)
tree46e2278779959a3eb8d1ff94e137e48dd7d2e706 /search/groups.php
parent0af3ab738efb2fe6ea14d33a7a8261cfdb60efb7 (diff)
downloadelgg-dc4e11800a15fa47235373cfbe625199fd4bd7ac.tar.gz
elgg-dc4e11800a15fa47235373cfbe625199fd4bd7ac.tar.bz2
Refs #1086: Fixes specific issues mentioned pending KSES fix / replacement
git-svn-id: https://code.elgg.org/elgg/trunk@3369 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'search/groups.php')
-rw-r--r--search/groups.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/search/groups.php b/search/groups.php
index a925dfea2..d3e6f7686 100644
--- a/search/groups.php
+++ b/search/groups.php
@@ -19,7 +19,7 @@
set_context('search');
// Get input
- $tag = get_input('tag');
+ $tag = stripslashes(get_input('tag'));
if (!empty($tag)) {
$title = sprintf(elgg_echo('groups:searchtitle'),$tag);