Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Laurent S
erp5
Commits
acf2e5ed
Commit
acf2e5ed
authored
Oct 29, 2014
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Listbox: Cleanup REQUEST.cell ( same as
6a83d601
)
parent
c80f3b12
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
product/ERP5Form/ListBox.py
product/ERP5Form/ListBox.py
+8
-0
No files found.
product/ERP5Form/ListBox.py
View file @
acf2e5ed
...
...
@@ -2533,6 +2533,10 @@ class ListBoxHTMLRendererLine(ListBoxRendererLine):
html
=
u'<a href="%s">%s</a>'
%
(
url
,
html
)
html_list
.
append
((
html
,
original_value
,
error
,
editable_field
,
url
))
# XXX Does not leave garbage in REQUEST['cell'], because some other
# fields also use that key...
request
.
other
.
pop
(
'cell'
,
None
)
return
html_list
allow_class
(
ListBoxHTMLRendererLine
)
...
...
@@ -2918,6 +2922,10 @@ class ListBoxValidator(Validator.Validator):
#LOG("ListBox FormValidationError",0,str(error_result))
#LOG("ListBox FormValidationError",0,str(errors))
raise
FormValidationError
(
errors
,
error_result
)
# XXX Does not leave garbage in REQUEST['cell'], because some other
# fields also use that key...
REQUEST
.
other
.
pop
(
'cell'
,
None
)
return
result
ListBoxValidatorInstance
=
ListBoxValidator
()
...
...
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