Skip to content

Commit

Permalink
fixing bug #11104 : fixing a regression introduced by feature #10780.…
Browse files Browse the repository at this point in the history
… My fault. I was the integrator of this feature.
  • Loading branch information
NicolasEYSSERIC committed Nov 5, 2019
1 parent f47ca43 commit 4401477
Showing 1 changed file with 13 additions and 3 deletions.
Expand Up @@ -33,15 +33,27 @@
<view:setBundle bundle="${requestScope.resources.multilangBundle}" />
<view:setBundle bundle="${requestScope.resources.iconsBundle}" var="icons" />

<fmt:message key="rss.addChannel" var="addChannelLabel" />

<c:set var="content" value="${requestScope['Content']}" />
<c:set var="role" value="${requestScope['Role']}"/>

<html>
<head>
<view:looknfeel />
<script type="text/javascript">
function addChannel() {
jQuery.popup.load('ToCreateChannel').show('validation', {
title : "${addChannelLabel}",
callback : function() {
validateChannelForm();
}
});
}
</script>
</head>
<body>
<view:browseBar></view:browseBar>
<view:browseBar/>

<c:if test="${fn:contains(role, 'admin')}">
<fmt:message var="addChannelLabel" key="rss.addChannel" />
Expand All @@ -57,7 +69,5 @@
</view:frame>
</view:window>

<%@include file="channelManager.jsp" %>

</body>
</html>

0 comments on commit 4401477

Please sign in to comment.