From 08f8dd68931fe9db8a6e5421a8a305cd854f1c57 Mon Sep 17 00:00:00 2001 From: Matt Ward Date: Fri, 9 Dec 2011 18:41:57 +0000 Subject: [PATCH] Fix incorrect MSDN url when searching online Help. --- src/AddIns/Misc/HelpViewer/Source/Core/DisplayHelp.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AddIns/Misc/HelpViewer/Source/Core/DisplayHelp.cs b/src/AddIns/Misc/HelpViewer/Source/Core/DisplayHelp.cs index 525dd5de50..3c007cc5ee 100644 --- a/src/AddIns/Misc/HelpViewer/Source/Core/DisplayHelp.cs +++ b/src/AddIns/Misc/HelpViewer/Source/Core/DisplayHelp.cs @@ -189,7 +189,7 @@ namespace MSHelpSystem.Core 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));