'.$__settings['softpath'].'/.env and also please delete file '.$__settings['softpath'].'/.NO_SECURE_KEY after the upgrade is complete.';
}
//Check whether the Minimum Software configuration matches
function __requirements(){
global $__settings, $error, $software;
//If there are some shorfalls then pass it to $error and return false
return true;
}
//===========================
// Software Vendors Functions
//===========================
//Just Validate an email
function __email_address($email){
global $error;
if(!emailvalidation($email)){
$error[] = '{{err_wrongemail}}';
}
return $email;
}
?>