case 3649

This commit is contained in:
2018-08-22 23:11:19 +00:00
parent 610964d4b3
commit c0fa396b65
8 changed files with 29 additions and 18 deletions

View File

@@ -5499,10 +5499,13 @@ At first I was happy to find your code that solved my problem, but I did not lik
try
{
if(sUrl.ToLower().StartsWith("http://"))
//case 3649 changed this block to handle https urls
if (sUrl.ToLower().StartsWith("https://"))
System.Diagnostics.Process.Start(sUrl);
else if(sUrl.ToLower().StartsWith("http://"))
System.Diagnostics.Process.Start(sUrl);
else
System.Diagnostics.Process.Start("http://" + sUrl);
System.Diagnostics.Process.Start("https://" + sUrl);//was http before case 3649
}
catch(Exception ex)
@@ -8514,9 +8517,9 @@ At first I was happy to find your code that solved my problem, but I did not lik
get
{
if(AyaBizUtils.Lite)
return "http://www.ayanova.com/AyaNovaLite7webHelp/";
return @"https://www.ayanova.com/AyaNovaLite7webHelp/";
return "http://www.ayanova.com/AyaNova7webHelp/";
return @"https://www.ayanova.com/AyaNova7webHelp/";
}
}
#endregion help url