Added separate providers for IIS 8 and FTP 8

This commit is contained in:
feodor_fitsner 2012-09-13 19:51:24 -07:00
parent d72e715ee6
commit d826a96f6d
12 changed files with 271 additions and 16 deletions

View file

@ -966,7 +966,7 @@ namespace WebsitePanel.Providers.FTP
}
RegistryKey ftp = root.OpenSubKey("SYSTEM\\CurrentControlSet\\Services\\ftpsvc");
bool res = (value == 7 || value == 8) && ftp != null;
bool res = (value == 7) && ftp != null;
if (ftp != null)
ftp.Close();