aboutsummaryrefslogtreecommitdiff
path: root/search/users.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/users.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/users.php')
-rw-r--r--search/users.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/search/users.php b/search/users.php
index 89f679618..e07feddbb 100644
--- a/search/users.php
+++ b/search/users.php
@@ -13,13 +13,13 @@
*/
// Load Elgg engine
- require_once(dirname(dirname(__FILE__)) . "/engine/start.php");
+ require_once(dirname(dirname(__FILE__)) . "/engine/start.php");
// Set context
set_context('search');
// Get input
- $tag = get_input('tag');
+ $tag = stripslashes(get_input('tag'));
if (!empty($tag)) {
$title = sprintf(elgg_echo('users:searchtitle'),$tag);