Revert "[Install] Filter Directory name"

This reverts commit e424ddbfda.
pull/1098/head
Peter Goodhall 2021-07-20 19:22:39 +01:00
rodzic e424ddbfda
commit db137bbd61
1 zmienionych plików z 2 dodań i 8 usunięć

Wyświetl plik

@ -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 {