streams/mod/filerm.php

34 lines
678 B
PHP
Raw Normal View History

<?php
function filerm_content(&$a) {
if(! local_user()) {
killme();
}
2012-07-10 05:08:25 +00:00
$term = trim($_GET['term']);
$cat = trim($_GET['cat']);
2012-05-04 13:42:56 +00:00
$category = (($cat) ? true : false);
if($category)
$term = $cat;
$item_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
logger('filerm: tag ' . $term . ' item ' . $item_id);
2012-07-10 05:08:25 +00:00
if($item_id && strlen($term)) {
2012-07-10 05:48:51 +00:00
$r = q("delete from term where uid = %d and type = %d and oid = %d and term = '%s' limit 1",
2012-07-10 05:08:25 +00:00
intval(local_user()),
2012-07-10 05:48:51 +00:00
intval(($category) ? TERM_CATEGORY : TERM_FILE),
2012-07-10 05:08:25 +00:00
intval($item_id),
dbesc($term)
);
}
if(x($_SESSION,'return_url'))
goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
killme();
}