fix: Missing "=" in Flickr markup

Seems to have been missing in quite a lot of versions :)
This commit is contained in:
Søren Gregersen
2019-07-19 10:34:10 +02:00
committed by Sebastiaan Janssen
parent 9e1809eeec
commit 3fd412e962

View File

@@ -25,7 +25,7 @@ namespace Umbraco.Web.Media.EmbedProviders
var imageHeight = GetXmlProperty(xmlDocument, "/oembed/height");
var imageTitle = GetXmlProperty(xmlDocument, "/oembed/title");
return string.Format("<img src=\"{0}\" width\"{1}\" height=\"{2}\" alt=\"{3}\" />", imageUrl, imageWidth, imageHeight, HttpUtility.HtmlEncode(imageTitle));
return string.Format("<img src=\"{0}\" width=\"{1}\" height=\"{2}\" alt=\"{3}\" />", imageUrl, imageWidth, imageHeight, HttpUtility.HtmlEncode(imageTitle));
}
}
}