diff options
author | friendica <info@friendica.com> | 2012-07-09 22:08:25 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-09 22:08:25 -0700 |
commit | 4b066e04f619c2c6f8d383daee9ceab49f39acdc (patch) | |
tree | c9f3376ffce342333b60d848430ee13b3329d903 /mod/filerm.php | |
parent | 8855cb9c286eb66ad96b3388d85ccc57434a6db3 (diff) | |
download | volse-hubzilla-4b066e04f619c2c6f8d383daee9ceab49f39acdc.tar.gz volse-hubzilla-4b066e04f619c2c6f8d383daee9ceab49f39acdc.tar.bz2 volse-hubzilla-4b066e04f619c2c6f8d383daee9ceab49f39acdc.zip |
making tags work
Diffstat (limited to 'mod/filerm.php')
-rw-r--r-- | mod/filerm.php | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/mod/filerm.php b/mod/filerm.php index d2b57d447..f70816266 100644 --- a/mod/filerm.php +++ b/mod/filerm.php @@ -6,8 +6,8 @@ function filerm_content(&$a) { killme(); } - $term = unxmlify(trim($_GET['term'])); - $cat = unxmlify(trim($_GET['cat'])); + $term = trim($_GET['term']); + $cat = trim($_GET['cat']); $category = (($cat) ? true : false); if($category) @@ -17,8 +17,14 @@ function filerm_content(&$a) { logger('filerm: tag ' . $term . ' item ' . $item_id); - if($item_id && strlen($term)) - file_tag_unsave_file(local_user(),$item_id,$term, $category); + if($item_id && strlen($term)) { + $r = q("delete from term where uid = %d and type = %d and oid = %d and $term = '%s' limit 1", + intval(local_user()), + intval(($category) ? FILE_CATEGORY : FILE_HASHTAG), + intval($item_id), + dbesc($term) + ); + } if(x($_SESSION,'return_url')) goaway($a->get_baseurl() . '/' . $_SESSION['return_url']); |