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
Massimiliano
ISPConfig 3
Commits
350a863c
Commit
350a863c
authored
Aug 25, 2014
by
Till Brehm
Browse files
Merge branch 'work-3.0.5.4p3' of git.ispconfig.org:pixcept/ispconfig3-mods into work-3.0.5.4p3
parents
cb122101
90923d22
Changes
2
Hide whitespace changes
Inline
Side-by-side
interface/web/js/scrigo.js.php
View file @
350a863c
<?php
session_start
();
include
'../../lib/config.inc.php'
;
header
(
'Content-Type: text/javascript; charset=utf-8'
);
// the config file sets the content type header so we have to override it here!
require_once
'../../lib/app.inc.php'
;
...
...
interface/web/sites/web_domain_edit.php
View file @
350a863c
...
...
@@ -406,8 +406,15 @@ class page_action extends tform_actions {
}
$ssl_domain_select
=
''
;
$tmp
=
$app
->
db
->
queryOneRecord
(
"SELECT domain FROM web_domain WHERE domain_id = "
.
$this
->
id
);
$ssl_domains
=
array
(
$tmp
[
"domain"
],
'www.'
.
$tmp
[
"domain"
],
'*.'
.
$tmp
[
"domain"
]);
$ssl_domains
=
array
();
$tmpd
=
$app
->
db
->
queryAllRecords
(
"SELECT domain, type FROM web_domain WHERE domain_id = "
.
$this
->
id
.
" OR parent_domain_id = "
.
$this
->
id
);
foreach
(
$tmpd
as
$tmp
)
{
if
(
$tmp
[
'type'
]
==
'subdomain'
||
$tmp
[
'type'
]
==
'vhostsubdomain'
)
{
$ssl_domains
[]
=
$tmp
[
"domain"
];
}
else
{
$ssl_domains
=
array_merge
(
$ssl_domains
,
array
(
$tmp
[
"domain"
],
'www.'
.
$tmp
[
"domain"
],
'*.'
.
$tmp
[
"domain"
]));
}
}
if
(
is_array
(
$ssl_domains
))
{
foreach
(
$ssl_domains
as
$ssl_domain
)
{
$selected
=
(
$ssl_domain
==
$this
->
dataRecord
[
'ssl_domain'
])
?
'SELECTED'
:
''
;
...
...
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