This minor fix fixes a problem where any contrib with a '&' does not get parsed correctly and therefore does not update correctly.


1. Manually check to see if any contribs with '&' in the title need to be updated.


2. In admin/contrib_tacker.php

change:
$channel = new rdfFile("http://www.oscommerce.com/oscommerce_contributions.rdf");
$channel->parse(true);

to:
$channel = new rdfFile("http://www.oscommerce.com/oscommerce_contributions.rdf");
$channel->parse(false);


More...