Github user martin-g commented on a diff in the pull request: https://github.com/apache/wicket/pull/97#discussion_r26283656 --- Diff: wicket-core/src/main/java/org/apache/wicket/resource/CssUrlReplacer.java --- @@ -58,9 +66,12 @@ public String process(String input, Class<?> scope, String name) { Url imageCandidateUrl = Url.parse(matcher.group(1)); CharSequence processedUrl; + boolean embedded = false; + if (imageCandidateUrl.isFull()) { processedUrl = imageCandidateUrl.toString(Url.StringMode.FULL); + --- End diff -- no need of the new extra line
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---