diff --git a/modules/servers/VirtFusionDirect/hooks.php b/modules/servers/VirtFusionDirect/hooks.php index 466f82f..74c3d6e 100644 --- a/modules/servers/VirtFusionDirect/hooks.php +++ b/modules/servers/VirtFusionDirect/hooks.php @@ -27,7 +27,7 @@ add_hook('ClientAreaFooterOutput', 1, function ($vars) { foreach ($templates_data['data'] as $osCategory) { foreach ($osCategory['templates'] as $template) { $optionValue = $template['id']; - $optionLabel = $template['name'] . " " . $template['version'] . " " . $template['variant']; + $optionLabel = $template['name']." ".$template['version']." ".$template['variant']; $dropdownOptions[] = ['id' => $optionValue, 'name' => $optionLabel]; } } @@ -65,18 +65,20 @@ add_hook('ClientAreaFooterOutput', 1, function ($vars) { return " "; -}); \ No newline at end of file +});