From a189fc0872867e6692e02453fb2ea1ec95c0979c Mon Sep 17 00:00:00 2001 From: Alexandre Hannud Abdo Date: Tue, 23 Jun 2015 01:08:02 -0300 Subject: [PATCH] properly trims edited posts before signing so signature verification works --- mod/item.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/item.php b/mod/item.php index 3ff286268..9287081ef 100644 --- a/mod/item.php +++ b/mod/item.php @@ -343,8 +343,8 @@ function item_post(&$a) { $coord = $orig_post['coord']; $verb = $orig_post['verb']; $app = $orig_post['app']; - $title = $_REQUEST['title']; - $body = $_REQUEST['body']; + $title = escape_tags(trim($_REQUEST['title'])); + $body = trim($_REQUEST['body']); $item_flags = $orig_post['item_flags']; // force us to recalculate if we need to obscure this post