Skip to content
This repository has been archived by the owner on Oct 16, 2020. It is now read-only.

Commit

Permalink
Fix incorrect MSDN url when searching online Help.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrward committed Dec 9, 2011
1 parent 28c2f38 commit 08f8dd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AddIns/Misc/HelpViewer/Source/Core/DisplayHelp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ static void DisplaySearchOnMSDN(string searchWords)
if (string.IsNullOrEmpty(searchWords)) {
throw new ArgumentNullException("searchWords");
}
string msdnUrl = string.Format(@"http://social.social.msdn.microsoft.com/Search/{0}/?query={1}&ac=3", CultureInfo.CurrentUICulture.ToString(), searchWords.Replace(" ", "+"));
string msdnUrl = string.Format(@"http://social.msdn.microsoft.com/Search/{0}/?query={1}&ac=3", CultureInfo.CurrentUICulture.ToString(), searchWords.Replace(" ", "+"));
BrowserPane browser = ActiveHelp3Browser();
if (browser != null) {
LoggingService.Info(string.Format("Help 3.0: Navigating to {0}", msdnUrl));
Expand Down

0 comments on commit 08f8dd6

Please sign in to comment.