I've just installed 7.x-1.x-dev dated 2012-Aug-06 as I had run into the missing query string problem described here:
http://drupal.org/node/1309658
Now the query string part is repeated in a view when I rewrite the output using this:
<a target="_blank" href="[field_web_link-url]">[field_web_link-title]</a>
That produces a URL of: /civicrm/event/participant?reset=1&id=26?reset=1&id=26
It should be: /civicrm/event/participant?reset=1&id=26
Also the link fields in my custom content type nodes now show different problems depending on whether the link stored is absolute or relative, but both worked normally with Link 7.x-1.0.
Absolute:
...icrm/event/info?reset=1&id=26?reset=1&id=26
(unwanted & and repeated query part)
Relative:
...crm/event/participant%3Freset%3D1%26amp%3Bid%3D25%3Freset%3D1%26id%3D25
Comments
Comment #1
rallycivic commentedPatch #18 here fixes most of this:
http://drupal.org/node/1309658#comment-6350786
The only problem left is the relative links coming out like this:
...crm/event/participant%3Freset%3D1%26amp%3Bid%3D25%3Freset%3D1%26id%3D25Comment #2
rallycivic commentedThis problem is being dealt with here: http://drupal.org/node/1309658
Comment #2.0
rallycivic commentedAdded code tags to correct display