generate_syndicated_feed: pass article id to sanitize()
This commit is contained in:
parent
724dea9a84
commit
3261dbfa21
|
@ -141,7 +141,7 @@ class Handler_Public extends Handler {
|
|||
$tpl->setVariable('ARTICLE_EXCERPT', $line["content_preview"], true);
|
||||
|
||||
$content = sanitize($line["content"], false, $owner_uid,
|
||||
$feed_site_url);
|
||||
$feed_site_url, false, $line["id"]);
|
||||
|
||||
if ($line['note']) {
|
||||
$content = "<div style=\"$note_style\">Article note: " . $line['note'] . "</div>" .
|
||||
|
@ -224,7 +224,7 @@ class Handler_Public extends Handler {
|
|||
$article['link'] = $line['link'];
|
||||
$article['title'] = $line['title'];
|
||||
$article['excerpt'] = $line["content_preview"];
|
||||
$article['content'] = sanitize($line["content"], false, $owner_uid);
|
||||
$article['content'] = sanitize($line["content"], false, $owner_uid, $feed_site_url, false, $line["id"]);
|
||||
$article['updated'] = date('c', strtotime($line["updated"]));
|
||||
|
||||
if ($line['note']) $article['note'] = $line['note'];
|
||||
|
|
Loading…
Reference in New Issue