From: Andrew Dolgov Date: Thu, 18 Apr 2013 12:25:02 +0000 (+0400) Subject: entry_author: do not double escape string, author & comments: trim X-Git-Tag: 1.7.9~25^2~138 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=ce2b219c64df3a84bacea2aecf05cc2e96aa0d59;p=tt-rss.git entry_author: do not double escape string, author & comments: trim --- diff --git a/include/rssfuncs.php b/include/rssfuncs.php index 9c80a72d..079471b4 100644 --- a/include/rssfuncs.php +++ b/include/rssfuncs.php @@ -583,14 +583,12 @@ $entry_author_item = $item->get_author(); $entry_author = $entry_author_item->get_name(); if (!$entry_author) $entry_author = $entry_author_item->get_email(); - - $entry_author = db_escape_string($entry_author); } $entry_guid = db_escape_string(mb_substr($entry_guid, 0, 245)); - $entry_comments = db_escape_string(mb_substr($entry_comments, 0, 245)); - $entry_author = db_escape_string(mb_substr($entry_author, 0, 245)); + $entry_comments = db_escape_string(mb_substr(trim($entry_comments), 0, 245)); + $entry_author = db_escape_string(mb_substr(trim($entry_author), 0, 245)); $num_comments = $item->get_item_tags('http://purl.org/rss/1.0/modules/slash/', 'comments');