Skip to content

Commit

Permalink
fix(initZMS): Added missing minimal_init parameter (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmeier76 authored Jan 29, 2025
1 parent 10ce6af commit f1fa9b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Products/zms/zms.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,8 @@ def __init__(self):
# --------------------------------------------------------------------------
# ZMS.initZMS:
# --------------------------------------------------------------------------
def initZMS(self, container, id, titlealt, title, lang, manage_lang, REQUEST):
return initZMS(container, id, titlealt, title, lang, manage_lang, REQUEST)
def initZMS(self, container, id, titlealt, title, lang, manage_lang, REQUEST, minimal_init = False):
return initZMS(container, id, titlealt, title, lang, manage_lang, REQUEST, minimal_init)


# --------------------------------------------------------------------------
Expand Down

0 comments on commit f1fa9b5

Please sign in to comment.