? 955214-1_query.patch
Index: link.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/link/link.module,v
retrieving revision 1.25.2.3
diff -u -p -r1.25.2.3 link.module
--- link.module	18 Oct 2010 03:46:47 -0000	1.25.2.3
+++ link.module	28 Oct 2010 03:04:53 -0000
@@ -485,7 +485,9 @@ function _link_sanitize(&$item, $delta, 
   }
   // Separate out the query string if any.
   if (strpos($url, '?') !== FALSE) {
-    $item['query'] = substr($url, strpos($url, '?') + 1);
+    $query = substr($url, strpos($url, '?') + 1);
+    parse_str($query, $query);
+    $item['query'] = $query;
     $url = substr($url, 0, strpos($url, '?'));
   }
   // Save the new URL without the anchor or query.
