Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5_rtl_support
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Romain Courteaud
erp5_rtl_support
Commits
29343915
Commit
29343915
authored
Aug 08, 2013
by
Arnaud Fontaine
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BusinessTemplate: Escape '_' in LIKE expression meaning '.' in regex (
b241968f
).
parent
210e06ac
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
product/ERP5/Document/BusinessTemplate.py
product/ERP5/Document/BusinessTemplate.py
+2
-1
No files found.
product/ERP5/Document/BusinessTemplate.py
View file @
29343915
...
...
@@ -950,7 +950,8 @@ class ObjectTemplateItem(BaseTemplateItem):
def
recursiveUnindex
(
catalog
,
item_path
,
root_document_path
):
# search the object + sub-objects
result
=
catalog
(
relative_url
=
(
item_path
,
item_path
+
'/%'
))
result
=
catalog
(
relative_url
=
(
item_path
,
item_path
.
replace
(
'_'
,
r'\
_
') + '
/%
'))
for x in result:
uid = x.uid
path = x.path
...
...
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