Just add this function to your qa-theme.php
function q_item_title($q_item)
{
if (strpos($q_item['title'],'?') !== false) {
$ap = '';
}else{
$ap ='?';
}
$this->output(
'<DIV CLASS="qa-q-item-title">',
'<A HREF="'.$q_item['url'].'">'.$q_item['title'].''.$ap.'</A>', '</DIV>'
);
}
function title()
{
if (isset($this->content['title']))
if (strpos($this->content['title'],'?') !== false) {
$ap = '';
}else{
$ap ='?';
}
$this->output($this->content['title'].$ap);
}
If you have a snow theme then do it this way:
Replace the function title() with this one:
function title() // add RSS feed icon after the page title
{
if (isset($this->content['title']))
if (strpos($this->content['title'],'?') !== false) {
$ap = '';
}else{
$ap ='?';
}
$this->output($this->content['title'].$ap);
$feed=@$this->content['feed'];
if (!empty($feed))
$this->output('<a href="'.$feed['url'].'" title="'.@$feed['label'].'"><img src="'.$this->rooturl.'images/rss.jpg" alt="" width="16" height="16" border="0" CLASS="qa-rss-icon"/></a>');
}