'description'=>$t('In order to allow search engines to view the XML sitemap and content on your site, the anonymous user role must have the <a href="@perm-link">%permission</a> permission.',array('@perm-link'=>url('admin/user/permissions/'.DRUPAL_ANONYMOUS_RID,array('fragment'=>'module-node')),'%permission'=>'access content')),
'description'=>$t('In order to allow search engines to view the XML sitemap and content on your site, the anonymous user role must have the <a href="@perm-link">%permission</a> permission.',array('@perm-link'=>url('admin/config/people/permissions/'.DRUPAL_ANONYMOUS_RID,array('fragment'=>'module-node')),'%permission'=>'access content')),
@@ -695,7 +695,7 @@ class XMLSitemapFunctionalTest extends XMLSitemapTestHelper {
// Test anonymous users access to sitemap.xml.
$anon_permissions=db_query("SELECT perm FROM {permission} WHERE rid = %d",DRUPAL_ANONYMOUS_RID)->fetchField();
db_query("UPDATE {permission} SET perm = '' WHERE rid = %d",DRUPAL_ANONYMOUS_RID);
$this->assertXMLSitemapProblems(t('In order to allow search engines to view the XML sitemap, the anonymous user role must have the access content permission.'));
$this->assertXMLSitemapProblems(t('In order to allow search engines to view the XML sitemap and content on your site, the anonymous user role must have the access content permission.'));
db_query("UPDATE {permission} SET perm = '%s' WHERE rid = %d",$anon_permissions,DRUPAL_ANONYMOUS_RID);