Skip to content

Commit

Permalink
Remove currentFolderOnlyInNavtree
Browse files Browse the repository at this point in the history
  • Loading branch information
esteele committed Sep 18, 2015
1 parent 8d7d1e8 commit a1a093a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plone/app/upgrade/v50/betas.py
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,8 @@ def to50rc3(context):
site_properties = pprop['site_properties']
registry = getUtility(IRegistry)

site_properties_to_remove = ['invalid_ids']
site_properties_to_remove = ['invalid_ids',
'currentFolderOnlyInNavtree']

for p in site_properties_to_remove:
if portal.hasProperty(p):
Expand All @@ -500,8 +501,7 @@ def to50rc3(context):
'mark_special_links',
'calendar_starting_year',
'calendar_future_years_available',
'redirect_links',
'']
'redirect_links']
for p in properties_to_migrate:
if site_properties.hasProperty(p):
value = site_properties.getProperty(p)
Expand Down

0 comments on commit a1a093a

Please sign in to comment.