Index: xmlsitemap_menu/xmlsitemap_menu.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap_menu/Attic/xmlsitemap_menu.install,v
retrieving revision 1.1.4.30
diff -u -p -r1.1.4.30 xmlsitemap_menu.install
--- xmlsitemap_menu/xmlsitemap_menu.install	22 Apr 2009 16:24:22 -0000	1.1.4.30
+++ xmlsitemap_menu/xmlsitemap_menu.install	22 Apr 2009 21:49:35 -0000
@@ -123,7 +123,9 @@ function xmlsitemap_menu_update_6107() {
  * Implementation of hook_update_N().
  */
 function xmlsitemap_menu_update_6108() {
-  $ret[] = update_sql("UPDATE {menu_custom} SET description =". t('A custom menu added by <em>XML Sitemap: Menu</em> module, which can optionally be used as a source for menu links in the sitemap for more fine-grained control.'). " WHERE menu_name = 'menu-xmlsitemap'");
+  $sql = "UPDATE {menu_custom} SET description = '%s' WHERE menu_name = '%s'";
+  $description = t('A custom menu added by <em>XML Sitemap: Menu</em> module, which can optionally be used as a source for menu links in the sitemap for more fine-grained control.');
+  $ret[] = update_sql($sql, $description, 'menu-xmlsitemap');
   return $ret;
 }
 
