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
da386035
Commit
da386035
authored
Mar 29, 2016
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
forge: update code relying on incorrect default value of person.getTitle
parent
4afb8e21
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
bt5/erp5_forge/SkinTemplateItem/portal_skins/erp5_forge/BugLine_send.py
.../SkinTemplateItem/portal_skins/erp5_forge/BugLine_send.py
+2
-2
No files found.
bt5/erp5_forge/SkinTemplateItem/portal_skins/erp5_forge/BugLine_send.py
View file @
da386035
...
@@ -9,7 +9,7 @@ if subject is None:
...
@@ -9,7 +9,7 @@ if subject is None:
if
from_url
is
None
:
if
from_url
is
None
:
sender
=
context
.
getSourceValue
()
sender
=
context
.
getSourceValue
()
if
sender
is
not
None
:
if
sender
is
not
None
:
if
sender
.
get
Title
():
if
sender
.
has
Title
():
from_url
=
'"%s" <%s>'
%
(
sender
.
getTitle
(),
from_url
=
'"%s" <%s>'
%
(
sender
.
getTitle
(),
sender
.
getDefaultEmailText
())
sender
.
getDefaultEmailText
())
else
:
else
:
...
@@ -32,7 +32,7 @@ if to_url is None:
...
@@ -32,7 +32,7 @@ if to_url is None:
for
recipient
in
recipient_list
:
for
recipient
in
recipient_list
:
email
=
recipient
.
getDefaultEmailText
()
email
=
recipient
.
getDefaultEmailText
()
if
email
:
if
email
:
if
recipient
.
get
Title
():
if
recipient
.
has
Title
():
to_url_list
.
append
(
'"%s" <%s>'
%
(
recipient
.
getTitle
(),
email
))
to_url_list
.
append
(
'"%s" <%s>'
%
(
recipient
.
getTitle
(),
email
))
else
:
else
:
to_url_list
.
append
(
email
)
to_url_list
.
append
(
email
)
...
...
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