Revert "[Install] Filter Directory name"

This reverts commit e424ddbfda.
This commit is contained in:
Peter Goodhall 2021-07-20 19:22:39 +01:00
parent e424ddbfda
commit db137bbd61

View File

@ -9,7 +9,7 @@ class Core {
$counter = 0;
// Validate the hostname
if(isset($data['hostname']) AND !empty($data['hostname']) AND filter_var($data['hostname'], FILTER_SANITIZE_URL)) {
if(isset($data['hostname']) AND !empty($data['hostname'])) {
$counter++;
}
// Validate the username
@ -25,14 +25,8 @@ class Core {
$counter++;
}
if(!preg_match("~0-9A-Za-z-/+~", $data['directory'])) {
// pass
} else {
return false;
}
// Check if all the required fields have been entered
if($counter == '4') {
if($counter == '3') {
return true;
}
else {