Issue #2918784: Views RSS row plugin incorrectly assumes links are relative
2 unresolved threads
Compare changes
@@ -2,6 +2,7 @@
@@ -130,7 +131,18 @@ public function render($row) {
@@ -147,7 +159,17 @@ public function render($row) {
Why do we need trim and strip_tags? I ran the tests without this and they also pass.
Depending on the views configuration, the
$this->getField($row_index, $this->options['link_field']);
could return markup. In order to useUrlHelper::isExternal($link)
, this needs to be a clean url.