diff options
author | friendica <info@friendica.com> | 2014-02-20 15:00:29 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-02-20 15:00:29 -0800 |
commit | 3bddaa9e0467de602be062c08dbb40eca65e9d1d (patch) | |
tree | bc5083be6dfdb2118c93b4b3f6155513e5fe931d /mod/item.php | |
parent | e56abd17822a6f5bfba9756239d613eb6240c4c4 (diff) | |
download | volse-hubzilla-3bddaa9e0467de602be062c08dbb40eca65e9d1d.tar.gz volse-hubzilla-3bddaa9e0467de602be062c08dbb40eca65e9d1d.tar.bz2 volse-hubzilla-3bddaa9e0467de602be062c08dbb40eca65e9d1d.zip |
title missing in private mention posts
Diffstat (limited to 'mod/item.php')
-rw-r--r-- | mod/item.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/item.php b/mod/item.php index dc005bb20..2feb64a37 100644 --- a/mod/item.php +++ b/mod/item.php @@ -269,7 +269,7 @@ function item_post(&$a) { $coord = $orig_post['coord']; $verb = $orig_post['verb']; $app = $orig_post['app']; - $title = escape_tags(trim($_REQUEST['title'])); + $title = $_REQUEST['title']; $body = $_REQUEST['body']; $private = $orig_post['item_private']; $item_flags = $orig_post['item_flags']; |