Replace calls to $node->title with $node->label()

8.0.x
Damian Lee 2012-08-06 17:33:34 +01:00 committed by Tim Plunkett
parent 1a0ca1240a
commit 1f904665f8
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ class Rss extends RowPluginBase {
$item = new stdClass();
$item->description = $item_text;
$item->title = $node->title;
$item->title = $node->label();
$item->link = $node->link;
$item->elements = $node->rss_elements;
$item->nid = $node->nid;