Last modified: 2011-11-22 04:03:01 UTC
dumpHTMP.inc doCategories() function doesn't map the logical table name categroylinks to the physical table correctly, resulting in fatal script failure (no index.html gen'd, etc.) Fix is trivial. Change $categorylinks = $dbr->tableName( 'categorylinks' ); print "Selecting categories..."; $sql = 'SELECT DISTINCT cl_to FROM categorylinks'; to $categorylinks = $dbr->tableName( 'categorylinks' ); print "Selecting categories..."; $sql = 'SELECT DISTINCT cl_to FROM '.$categorylinks;
Fixed prior to this being mentioned. It hasn't replicated to the anonymous CVS servers yet.