diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-28 15:21:01 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-28 15:21:01 +0200 |
commit | f86e909a82c372ff01222431a7084b4cc47a6e81 (patch) | |
tree | e3d3269ed5bb1fa08bcf4d6a229976defbda43b9 /mod/item.php | |
parent | 0f2a34c23b2da277af88bbd36c1871f3c58e6420 (diff) | |
parent | e894775a39920edc0e438364c818357ab809bace (diff) | |
download | volse-hubzilla-f86e909a82c372ff01222431a7084b4cc47a6e81.tar.gz volse-hubzilla-f86e909a82c372ff01222431a7084b4cc47a6e81.tar.bz2 volse-hubzilla-f86e909a82c372ff01222431a7084b4cc47a6e81.zip |
Merge remote-tracking branch 'friendica/master'
Diffstat (limited to 'mod/item.php')
-rwxr-xr-x | mod/item.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/item.php b/mod/item.php index 5baae2bde..24730f53e 100755 --- a/mod/item.php +++ b/mod/item.php @@ -171,13 +171,13 @@ function item_post(&$a) { $str_contact_allow = $orig_post['allow_cid']; $str_group_deny = $orig_post['deny_gid']; $str_contact_deny = $orig_post['deny_cid']; - $title = $orig_post['title']; $location = $orig_post['location']; $coord = $orig_post['coord']; $verb = $orig_post['verb']; $emailcc = $orig_post['emailcc']; $app = $orig_post['app']; $categories = $orig_post['file']; + $title = notags(trim($_REQUEST['title'])); $body = escape_tags(trim($_REQUEST['body'])); $private = $orig_post['private']; $pubmail_enable = $orig_post['pubmail']; |