diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-06-30 16:43:41 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-06-30 16:43:41 +0000 |
commit | dc4e11800a15fa47235373cfbe625199fd4bd7ac (patch) | |
tree | 46e2278779959a3eb8d1ff94e137e48dd7d2e706 /search/users.php | |
parent | 0af3ab738efb2fe6ea14d33a7a8261cfdb60efb7 (diff) | |
download | elgg-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.php | 4 |
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);
|