I'm using a view to display core aggregator feeds. I'd like to request an option to make all outbound links nofollow.

Comments

eaochoac’s picture

Line 901 of ~/drupal/modules/aggregator/aggregator.module

// Display the external link to the item.
$output .= <a rel="nofollow"  href="'. check_url($item->link) .'">. check_plain($item->title) ."</a>\n";

Add the rel="nofollow" property

and modify all the tpl files to include this nofollow too.

This should be a feature on future versions, and this forum should be moved to aggregator module

dawehner’s picture

Status: Active » Fixed

Don't hack core, as long you know what you are doing.

This is a theme function which you can do without hacking.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

DrupalSza’s picture

do i put this in the theme's template file then?

Garry Egan’s picture

So you offer up a criticism without a solution?