We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d152510 + 4869ca9 commit 3a293d6Copy full SHA for 3a293d6
BlogEngine/BlogEngine.Core/Web/HttpHandlers/SyndicationHandler.cs
@@ -185,7 +185,7 @@ private static List<IPublishable> GenerateItemList(HttpContext context)
185
client.Encoding = Encoding.Default;
186
using (var stream = client.OpenRead(context.Request.QueryString["apml"]))
187
{
188
- var doc = new XmlDocument();
+ var doc = new XmlDocument() { XmlResolver = null };
189
if (stream != null)
190
191
doc.Load(stream);
@@ -397,4 +397,4 @@ private static void StopServing(HttpContext context)
397
398
#endregion
399
}
400
-}
+}
0 commit comments