return the subdomain-names in PhpSettings::listing() instead of only the amount

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2018-12-11 11:45:39 +01:00
parent 8d966aebee
commit ab819129dd
2 changed files with 4 additions and 4 deletions

View File

@@ -46,7 +46,7 @@ if ($page == 'overview') {
$row['description'] = "<b>" . $row['description'] . "</b>";
}
$domains = "";
$subdomains_count = $row['subdomains_count'];
$subdomains_count = count($row['subdomains']);
foreach ($row['domains'] as $configdomain) {
$domains .= $configdomain . "<br>";
}