Running thru validation on core TNG files I discovered the tngrss.php file had a small error flagged by the W3C Feed Validation Service, which stated:
“This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.”
Correction can be made by opening the tngrss.php and editing the following line:
$item .= “<atom:link href=\”" . $tngdomain . “/tngrss.php\” rel=\”self \” type=\”application/rss+xml\” />\n”;
There’s an extra space in “self ” (before the last double quote). This space should be deleted to yield:
$item .= “<atom:link href=\”" . $tngdomain . “/tngrss.php\” rel=\”self\” type=\”application/rss+xml\” />\n”;
Save the file and upload it to your main TNG directory, overwriting the existing file. All done.
