Skip to content

Commit

Permalink
SAK-32499 - Change default property of portal.showSubsitesAsFlyout to…
Browse files Browse the repository at this point in the history
  • Loading branch information
jonespm authored and ottenhoff committed May 3, 2017
1 parent d085f2a commit ac98d3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3745,10 +3745,11 @@
# user.type.selector.3=guest

## SAK-22703 - Optionally group subsites into flyout menu
## Default changed to true in SAK-32499
# The flyout subsites menu is off by default. Grouping the subsites into a flyout menu can be very
# useful if you have a wide and shallow site hierarchy. To turn it on, set the following property to true.
# DEAFULT: false
# portal.showSubsitesAsFlyout=true
# DEFAULT: true
# portal.showSubsitesAsFlyout=false

# ########################################################################
# MSGCNTR
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ public void includeSubSites(PortalRenderContext rcontext, HttpServletRequest req

if( !siteView.isEmpty() ) {
rcontext.put("subSites", siteView.getRenderContextObject());
boolean showSubsitesAsFlyout = ServerConfigurationService.getBoolean("portal.showSubsitesAsFlyout",false);
boolean showSubsitesAsFlyout = ServerConfigurationService.getBoolean("portal.showSubsitesAsFlyout",true);
rcontext.put("showSubsitesAsFlyout", showSubsitesAsFlyout);
}
}
Expand Down

0 comments on commit ac98d3d

Please sign in to comment.