Commit 3ead586a authored by 's avatar

Merged fix for transactions caused at startup by help system from 2.2 branch

parent 480f00d8
......@@ -288,7 +288,9 @@ class ProductContext:
"""
Sets the title of the Product's Product Help
"""
self.getProductHelp().title=title
h = self.getProductHelp()
if getattr(h, 'title', None) != title:
h.title = title
def registerHelp(self, directory='help', clear=1):
"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment