Skip to content

Commit

Permalink
LPS-27630 Sort it
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed May 31, 2012
1 parent 1ccedcc commit df66b70
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion portal-web/docroot/html/common/themes/portlet.jsp
Expand Up @@ -143,7 +143,18 @@ boolean wsrp = ParamUtil.getBoolean(request, "wsrp");
<c:otherwise>

<%
boolean showPortletActions = (group.isLayoutPrototype() || tilesPortletDecorateBoolean) && (portletDisplay.isShowPortletCssIcon() || portletDisplay.isShowConfigurationIcon() || portletDisplay.isShowEditIcon() || portletDisplay.isShowCloseIcon() || portletDisplay.isShowRefreshIcon() || portletDisplay.isShowEditDefaultsIcon() || portletDisplay.isShowEditGuestIcon() || portletDisplay.isShowExportImportIcon() || portletDisplay.isShowHelpIcon() || portletDisplay.isShowPrintIcon());
boolean showPortletActions =
(group.isLayoutPrototype() || tilesPortletDecorateBoolean) &&
(portletDisplay.isShowCloseIcon() ||
portletDisplay.isShowConfigurationIcon() ||
portletDisplay.isShowEditDefaultsIcon() ||
portletDisplay.isShowEditGuestIcon() ||
portletDisplay.isShowEditIcon() ||
portletDisplay.isShowExportImportIcon() ||
portletDisplay.isShowHelpIcon() ||
portletDisplay.isShowPortletCssIcon() ||
portletDisplay.isShowPrintIcon() ||
portletDisplay.isShowRefreshIcon());
%>

<div class="portlet-borderless-container" <%= containerStyles %>>
Expand Down

0 comments on commit df66b70

Please sign in to comment.