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
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
Hardik Juneja
erp5
Commits
37ff3e25
Commit
37ff3e25
authored
Mar 29, 2016
by
Jérome Perrin
Committed by
Tristan Cavelier
Apr 12, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
forge: update code relying on incorrect default value of person.getTitle
parent
282f9433
Changes
1
Show 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 @
37ff3e25
...
...
@@ -9,7 +9,7 @@ if subject is None:
if
from_url
is
None
:
sender
=
context
.
getSourceValue
()
if
sender
is
not
None
:
if
sender
.
get
Title
():
if
sender
.
has
Title
():
from_url
=
'"%s" <%s>'
%
(
sender
.
getTitle
(),
sender
.
getDefaultEmailText
())
else
:
...
...
@@ -32,7 +32,7 @@ if to_url is None:
for
recipient
in
recipient_list
:
email
=
recipient
.
getDefaultEmailText
()
if
email
:
if
recipient
.
get
Title
():
if
recipient
.
has
Title
():
to_url_list
.
append
(
'"%s" <%s>'
%
(
recipient
.
getTitle
(),
email
))
else
:
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