2
Sorry it has been awhile since i looked into this module for majority of code.. but the file you need to alter i think is /modules/xreaggregator/block/xreaggregator_block.html
Currently it would read:
<a href="<{$site_url}>" target="_blank"><{$site_name}>a><br />
<{if $image.url != ""}>
<img src="<{$image.url}>" width="<{$image.width|default:88}>" height="<{$image.height|default:31}>" alt="<{$image.title}>" /><br />
<{/if}>
<ul>
<{section name=i loop=$items}>
<{if $items[i].title != ""}>
<li><a href="<{$xoops_url}>/modules/xreaggregator/index.php?id=<{$site_id}>#<{$items[i].link}>"><{$items[i].title}>a>li>
<{/if}>
<{/section}>
ul>
If you change it to this then it should link you to the article:
<a href="<{$site_url}>" target="_blank"><{$site_name}>a><br />
<{if $image.url != ""}>
<img src="<{$image.url}>" width="<{$image.width|default:88}>" height="<{$image.height|default:31}>" alt="<{$image.title}>" /><br />
<{/if}>
<ul>
<{section name=i loop=$items}>
<{if $items[i].title != ""}>
<li><a href="<{$items[i].link}>"><{$items[i].title}>a>li>
<{/if}>
<{/section}>
ul>