Roland Häder
ace8f753ac
Signed-off-by: Roland Häder <roland@mxchange.org> Conflicts: mod/bookmarklet.php mod/community.php mod/contacts.php mod/crepair.php mod/events.php mod/network.php mod/suggest.php mod/uexport.php view/theme/duepuntozero/config.php view/theme/frio/config.php view/theme/quattro/config.php view/theme/vier/config.php
28 lines
542 B
PHP
28 lines
542 B
PHP
<?php
|
|
|
|
function filerm_content(&$a) {
|
|
|
|
if (! local_user()) {
|
|
killme();
|
|
}
|
|
|
|
$term = unxmlify(trim($_GET['term']));
|
|
$cat = unxmlify(trim($_GET['cat']));
|
|
|
|
$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);
|
|
|
|
if($item_id && strlen($term))
|
|
file_tag_unsave_file(local_user(),$item_id,$term, $category);
|
|
|
|
if(x($_SESSION,'return_url'))
|
|
goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
|
|
|
|
killme();
|
|
}
|