From dc4e11800a15fa47235373cfbe625199fd4bd7ac Mon Sep 17 00:00:00 2001 From: marcus Date: Tue, 30 Jun 2009 16:43:41 +0000 Subject: 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 --- search/users.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'search/users.php') 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); -- cgit v1.2.3