In my sitemap-2.xml I have such links for all terms:
<loc>http://www.mysite.ru/forum/26</loc>
But the forum.module is disabled
So I think the problem is in xmlsitemap_taxonomy.module line:254
if ($term->module = 'forum') {
Must be:
if ($term->module == 'forum') {
It works for me
Comments
Comment #1
dave reidThanks for reporting the problem. It looks like this has actually been fixed in the 6.x-1.x-dev version (see cvs commit at http://drupal.org/cvs?commit=216696). Marking as fixed.
Comment #2
suit4 commentedhmm, better to report this as fixed, id its fixed in the release ...
Comment #3
dave reidI can't quite understand what you mean in your last comment, but the fix is available in the 6.x-1.x-dev version (http://drupal.org/node/335174) since it was fixed after the 6.x-1.0-beta5 version was created. This issue has also been marked as fixed as per comment #1.