Does it happen with 1.5.x?
-igor
On Nov 3, 2011 12:20 PM, "Ryan" <[email protected]> wrote:
> Using Wicket 1.4.19 and doing something simple such as this:
>
> public HomePage(final PageParameters parameters) {
> parameters.add("meh", "someone's link");
> add(new BookmarkablePageLink<Void>("link",HomePage.class,
> parameters));
> }
>
> The url that is generated for the link is:
> 127.0.0.1:8080/myproject/test/meh/someone\'s link
>
> If you then click the link the new url is:
> 127.0.0.1:8080/myproject/test/meh/someone\\'s link/meh/someone\'s link
>
> This happens because JavascriptUtils.escapeQuotes() gets called on the
> pageparameters. Am I missing something or is this just a bug? If it is a
> bug I am happy to file a jira issue with a quickstart attached.
>
> Thanks,
> Ryan
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>