diff options
author | friendica <info@friendica.com> | 2012-03-31 15:25:17 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-31 15:25:17 -0700 |
commit | 53f799f2bc125fadf527e3c65e8e9882d53d9aea (patch) | |
tree | 62114f520a5aae5eebfc5331617aa0e17ae1942f /mod/filerm.php | |
parent | 7581b32bb38fe4e0f9703cc887a54984ebfe88ea (diff) | |
download | volse-hubzilla-53f799f2bc125fadf527e3c65e8e9882d53d9aea.tar.gz volse-hubzilla-53f799f2bc125fadf527e3c65e8e9882d53d9aea.tar.bz2 volse-hubzilla-53f799f2bc125fadf527e3c65e8e9882d53d9aea.zip |
handle escaped file chars in display and search
Diffstat (limited to 'mod/filerm.php')
-rw-r--r-- | mod/filerm.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/filerm.php b/mod/filerm.php index 66b684dc9..c520fec7a 100644 --- a/mod/filerm.php +++ b/mod/filerm.php @@ -6,8 +6,8 @@ function filerm_content(&$a) { killme(); } - $term = notags(trim($_GET['term'])); - $item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0); + $term = unxmlify(trim($_GET['term'])); + $item_id = (($a->argc > 1) ? intval($a->argv[1]) : 0); logger('filerm: tag ' . $term . ' item ' . $item_id); |