SmarterMail 7.x plugin now handles SmarterMail 8.x as well.

SmarterMail 10.x name changed to reflect that it works on later versions as well.
This commit is contained in:
gwerner 2012-09-26 18:31:40 -07:00
parent 5baf5b9497
commit e50cac7ec0
3 changed files with 8 additions and 4 deletions

View file

@ -2107,7 +2107,7 @@ namespace WebsitePanel.Providers.Mail
if (!String.IsNullOrEmpty(productVersion))
{
string[] split = productVersion.Split(new char[] { '.' });
return split[0].Equals("7");
return split[0].Equals("7")||split[0].Equals("8");
}
}
@ -2140,7 +2140,7 @@ namespace WebsitePanel.Providers.Mail
if (!String.IsNullOrEmpty(productVersion))
{
string[] split = productVersion.Split(new[] { '.' });
return split[0].Equals("7");
return split[0].Equals("7")||split[0].Equals("8");
}
return false;