- Issue created by @mrshowerman
- 🇩🇪Germany mrshowerman Munich
I noticed that the query string is available in the
$extra
array, whose contents are added to the resulting<a>
element as HTML attributes. The attached patch fixes the issue by adding the query string to the URL instead and removing it from the array. Also, I noticed a few code inconsistencies introduced by the latest rewrite, which I tried to fix as well. - Issue was unassigned.
- Status changed to Needs review
almost 2 years ago 10:21am 13 June 2023 - Merge request !5Resolve #3366415 "Query string gets lost in HTML method" → (Open) created by mrshowerman
- 🇩🇪Germany mrshowerman Munich
I noticed that in the HTML method, there were a few attributes added to the link that aren't valid HTML, like
type="mailto"
. On the other hand, other valid attributes got lost in thepre
andpost
keys that were not processed properly.Created an MR that fixes both on top of the original patch.