Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dirk Dankhoff
ISPConfig 3
Commits
a8ac8563
Commit
a8ac8563
authored
Jun 05, 2015
by
Florian Schaal
Browse files
readd missing code
parent
dadfb45a
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/web/tools/resync.php
View file @
a8ac8563
...
...
@@ -145,6 +145,7 @@ class page_action extends tform_actions {
'web_domain'
=>
array
(
'index_field'
=>
'domain_id'
,
'server_type'
=>
'web'
,
'server_id'
=>
$server_id
,
),
'shell_user'
=>
array
(
'index_field'
=>
'shell_user_id'
,
...
...
@@ -263,6 +264,17 @@ class page_action extends tform_actions {
unset
(
$options_servers
);
}
//* mailinglist
$server_list
=
$this
->
create_list
(
$mail_server_rec
,
'mail'
,
'mail_mailinglist'
);
$options_servers
=
$server_list
[
0
];
$server_count
=
$server_list
[
1
];
unset
(
$server_list
);
if
(
isset
(
$options_servers
))
{
//* server with data found
if
(
$server_count
>
1
)
$options_servers
=
"<option value='0'>"
.
$app
->
tform
->
wordbook
[
'all_active_mail_txt'
]
.
"</option>"
.
$options_servers
;
$app
->
tpl
->
setVar
(
'mailinglist_server_id'
,
$options_servers
);
$app
->
tpl
->
setVar
(
'mailinglist_found'
,
1
);
unset
(
$options_servers
);
}
}
//* fetch web-server
...
...
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