I am trying to remove the XML rss feed links form the category list. I have identified the document serendipity_functions.inc.php as the source of it. The following code is the relevant section;
Code: Select all
case 3:
$category_id = serendipity_makeFilename($cat['category_name']);
if (!empty($xmlImg)) {
$ret .= sprintf(
'<a href="%s" title="%s"><img alt="xml " %s src="%s" /></a> %s' .
'<a href="%s" title="%s">%s</a><br />',
$serendipity['serendipityHTTPPath'] . 'rss.php?category=' . $cat['categoryid'] . '_' . $category_id,
htmlspecialchars($cat['category_description']),Any suggestions?
Regual Joe