Fixed site Favicon not saving

The saved function for the favicon was not there
This commit is contained in:
Philip Murray 2021-02-19 13:09:29 +00:00
parent 6adda2b1a9
commit 60d685416d

View File

@ -420,6 +420,13 @@
site.LogoFileId = logofileid;
}
var faviconFieldId = _faviconfilemanager.GetFileId();
if (faviconFieldId != -1)
{
site.FaviconFileId = faviconFieldId;
}
site.DefaultThemeType = _themetype;
site.DefaultLayoutType = (_layouttype == "-" ? string.Empty : _layouttype);
site.DefaultContainerType = _containertype;