Skip to content

Commit

Permalink
Fix #6011: Non conforming favicon meta tags (#6025)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mostafa-Moafi authored May 3, 2024
1 parent edeb883 commit adf7f64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DNN Platform/Library/UI/FavIcon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static string GetHeaderLink(int portalId)
string favIconPath = new FavIcon(portalId).GetRelativeUrl();
if (!string.IsNullOrEmpty(favIconPath))
{
headerLink = string.Format("<link rel='SHORTCUT ICON' href='{0}' type='image/x-icon' />", favIconPath);
headerLink = string.Format("<link rel='icon' href='{0}' type='image/x-icon' />", favIconPath);
}
else
{
Expand Down

0 comments on commit adf7f64

Please sign in to comment.