GitHub user dhs3000 opened a pull request:
https://github.com/apache/wicket/pull/279
Allow meta tags to be contributed during AJAX request
Meta tags that are added during an AJAX request seem to be ignored. Their
header contribution is not processed as far as I could see. The tag is added on
server-side but there was no error message in the browser and the tag does not
appear.
After adding a `processMeta` section in
`Wicket.Head.Contributor.processContribution` the new meta tag appears.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/dhs3000/wicket master
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/wicket/pull/279.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #279
----
commit e643b3942c7c6f2f4bf16cf134a5a5ac802329af
Author: Dennis Hoersch <dennishoersch@...>
Date: 2018-05-28T11:16:44Z
Allow meta tags to be contributed during AJAX request
----
---