Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
Zvonimir
ISPConfig 3
Commits
96cdd0a5
Commit
96cdd0a5
authored
Aug 21, 2014
by
Sergio
Browse files
fix edit null transport without destination
parent
a9e6315b
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/web/mail/mail_transport_edit.php
View file @
96cdd0a5
...
...
@@ -82,7 +82,7 @@ class page_action extends tform_actions {
}
if
(
!
empty
(
$tmp_parts
[
2
]))
{
$dest
=
@
$tmp_parts
[
1
]
.
':'
.
@
$tmp_parts
[
2
];
}
elseif
(
!
empty
(
$tmp_parts
[
1
]))
{
}
elseif
(
!
empty
(
$tmp_parts
[
1
])
||
$this
->
dataRecord
[
"transport"
]
==
":"
)
{
$dest
=
$tmp_parts
[
1
];
}
else
{
$dest
=
$this
->
dataRecord
[
"transport"
];
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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