Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
preetwinder
erp5
Commits
84386964
Commit
84386964
authored
9 years ago
by
Jérome Perrin
Browse files
Options
Download
Email Patches
Plain Diff
ZMI editor patch: support the case where there is no PUBLISHED in request
and fix a typo (cherry picked from commit
1bd9309a
)
parent
40fcee23
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
product/ERP5Type/patches/AceEditorZMI.py
product/ERP5Type/patches/AceEditorZMI.py
+2
-2
No files found.
product/ERP5Type/patches/AceEditorZMI.py
View file @
84386964
...
...
@@ -24,8 +24,8 @@ def manage_page_footer(self):
# REQUEST['PUBLISHED'] can be the form in the acquisition context of the
# document, or a method bound to the document (after a POST it is a bound method)
published
=
self
.
REQUEST
[
'PUBLISHED'
]
document
=
getattr
(
published
,
'im_self'
,
None
)
# bound me
h
tod
published
=
self
.
REQUEST
.
get
(
'PUBLISHED'
)
document
=
getattr
(
published
,
'im_self'
,
None
)
# bound met
h
od
if
document
is
None
:
document
=
aq_parent
(
published
)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment