e.g. in image:caption, or image:title e.g. a title like Apples & Oranges,
then your sitemap gets broken and is rejected by Google.
FIX
find: catalog/controller/feed/google_sitemap.php
on or around lines 21 and 22 change:
Code: Select all
$product['name']
//to
htmlspechalchars($product['name'])
To get some more meaningful reading you can add:
Code: Select all
"\r\n"
//at the end off each line, sample:
//e.g. change:
'<image:caption>' . htmlspecialchars($product['name']) . '</image:caption>';
//to:
'<image:caption>' . htmlspecialchars($product['name']) . '</image:caption>'. "\r\n";