diff options
author | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-03-14 07:20:13 +0100 |
---|---|---|
committer | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-03-14 07:20:13 +0100 |
commit | 4fcdada4320d5d5619eb3a1f517d0fea6b26857b (patch) | |
tree | bc2ba3aac0a08c1464718f688be8080d0dff6d2c /mod/filer.php | |
parent | 5bae7159cc7b182e40229bb6d547ccf303eb4282 (diff) | |
parent | fb77bfa648c3dd06d1b3f343f5ad98f32a7ce313 (diff) | |
download | volse-hubzilla-4fcdada4320d5d5619eb3a1f517d0fea6b26857b.tar.gz volse-hubzilla-4fcdada4320d5d5619eb3a1f517d0fea6b26857b.tar.bz2 volse-hubzilla-4fcdada4320d5d5619eb3a1f517d0fea6b26857b.zip |
Merge branch 'master' of https://github.com/friendica/friendica
Diffstat (limited to 'mod/filer.php')
-rwxr-xr-x | mod/filer.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mod/filer.php b/mod/filer.php new file mode 100755 index 000000000..a9e213536 --- /dev/null +++ b/mod/filer.php @@ -0,0 +1,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(); +} |