Skip to content

Commit

Permalink
SAK-32067 - Change default value of site-manage.importoption.siteinfo…
Browse files Browse the repository at this point in the history
… to true (sakaiproject#3738)
  • Loading branch information
jonespm authored and ottenhoff committed Jan 5, 2017
1 parent 8c6d61d commit 0d369a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1600,6 +1600,10 @@
# DEFAULT: false
# wsetup.skipManualCourseCreation=true

# SAK-22437 Add Site Information Display (site description) to site import options list
# DEFAULT: true
# site-manage.importoption.siteinfo=false

# ########################################################################
# GROUP PROVIDER (defined in kernel.properties)
# ########################################################################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13865,7 +13865,7 @@ protected Set importTools() {
}
}

if (ServerConfigurationService.getBoolean("site-manage.importoption.siteinfo", false)){
if (ServerConfigurationService.getBoolean("site-manage.importoption.siteinfo", true)){
rv.add(SITE_INFO_TOOL_ID);
}

Expand Down Expand Up @@ -13919,7 +13919,7 @@ protected List getToolsAvailableForImport(SessionState state, List<String> toolI
toolIdList.add(NEWS_TOOL_ID);
if (displayLessons && !toolIdList.contains(LESSONS_TOOL_ID))
toolIdList.add(LESSONS_TOOL_ID);
if (ServerConfigurationService.getBoolean("site-manage.importoption.siteinfo", false)){
if (ServerConfigurationService.getBoolean("site-manage.importoption.siteinfo", true)){
toolIdList.add(SITE_INFO_TOOL_ID);
}

Expand Down

0 comments on commit 0d369a9

Please sign in to comment.