Skip to content

Commit

Permalink
fix #691
Browse files Browse the repository at this point in the history
  • Loading branch information
marevol committed Sep 17, 2016
1 parent 197f599 commit 92c72e0
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,9 @@ public HtmlResponse details(final int crudMode, final String id) {
throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id), () -> asListHtml());
});
});
}).renderWith(data -> {
registerProtocolSchemeItems(data);
registerWebConfigItems(data);
});
}

Expand Down Expand Up @@ -276,6 +279,7 @@ protected void registerProtocolSchemeItems(final RenderData data) {
itemList.add(createItem(ComponentUtil.getMessageManager().getMessage(locale, "labels.webauth_scheme_basic"), Constants.BASIC));
itemList.add(createItem(ComponentUtil.getMessageManager().getMessage(locale, "labels.webauth_scheme_digest"), Constants.DIGEST));
itemList.add(createItem(ComponentUtil.getMessageManager().getMessage(locale, "labels.webauth_scheme_ntlm"), Constants.NTLM));
itemList.add(createItem(ComponentUtil.getMessageManager().getMessage(locale, "labels.webauth_scheme_form"), Constants.FORM));
RenderDataUtil.register(data, "protocolSchemeItems", itemList);
}

Expand Down

0 comments on commit 92c72e0

Please # to comment.