Issue #2918784: Views RSS row plugin incorrectly assumes links are relative
2 unresolved threads
Merge request reports
Activity
130 131 // Create the RSS item object. 131 132 $item = new \stdClass(); 132 133 $item->title = $this->getField($row_index, $this->options['title_field']); 133 $item->link = $this->getAbsoluteUrl($this->getField($row_index, $this->options['link_field'])); 134 135 // If internal link, get absolute URL from URI. 136 $link = $this->getField($row_index, $this->options['link_field']); 137 $link = $link ? trim(strip_tags($link)) : ''; 147 159 $item_guid = $this->getField($row_index, $this->options['guid_field_options']['guid_field']); 148 160 if ($this->options['guid_field_options']['guid_field_is_permalink']) { 149 161 $guid_is_permalink_string = 'true'; 162 $item_guid = $item_guid ? trim(strip_tags($item_guid)) : ''; - Resolved by Michael Vanetta
Please register or sign in to reply