aboutsummaryrefslogtreecommitdiffstats
path: root/mod/filer.php
blob: a9e2135361d147dc64207860bc36d553fa3e0043 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

require_once('include/security.php');
require_once('include/bbcode.php');
require_once('include/items.php');


function filer_content(&$a) {

	if(! local_user()) {
		killme();
	}

	$term = notags(trim($_GET['term']));
	$item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0);

	logger('filer: tag ' . $term . ' item ' . $item_id);

	if($item_id && strlen($term))
		file_tag_save_file(local_user(),$item_id,$term);

	killme();
}