Skip to content

Commit 90923d2

Browse files
author
Marius Cramer
committed
- fixed typo in previous commit
1 parent d96e29e commit 90923d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/web/sites/web_domain_edit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ function onShowEnd() {
409409
$ssl_domains = array();
410410
$tmpd = $app->db->queryAllRecords("SELECT domain, type FROM web_domain WHERE domain_id = ".$this->id." OR parent_domain_id = ".$this->id);
411411
foreach($tmpd as $tmp) {
412-
if($tmp['type'] == 'subdomain' || $tmp['type'] == 'vhostsubdomain']) {
412+
if($tmp['type'] == 'subdomain' || $tmp['type'] == 'vhostsubdomain') {
413413
$ssl_domains[] = $tmp["domain"];
414414
} else {
415415
$ssl_domains = array_merge($ssl_domains, array($tmp["domain"],'www.'.$tmp["domain"],'*.'.$tmp["domain"]));

0 commit comments

Comments
 (0)