fix typecast for css links

pull/1/head
reger 10 years ago
parent 3288489fd2
commit 1395f10e95

@ -697,8 +697,8 @@ public class CollectionConfiguration extends SchemaConfiguration implements Seri
c = 0;
for (final Map.Entry<DigestURL, String> entry: csss.entrySet()) {
final String cssurl = entry.getKey().toNormalform(false);
inboundLinks.remove(cssurl);
outboundLinks.remove(cssurl);
inboundLinks.remove(entry.getKey());
outboundLinks.remove(entry.getKey());
css_tag[c] =
"<link rel=\"stylesheet\" type=\"text/css\" media=\"" + entry.getValue() + "\"" +
" href=\""+ cssurl + "\" />";

Loading…
Cancel
Save