Fix #2128 - site settings validation issue when logged in as Administrator (not Host)

This commit is contained in:
Shaun Walker 2022-04-14 08:30:55 -04:00
parent 5a71ab3c20
commit 423ee04879

View File

@ -407,7 +407,7 @@
{
try
{
if (_name != string.Empty && _urls != string.Empty && _themetype != "-" && _containertype != "-")
if (_name != string.Empty && _themetype != "-" && _containertype != "-")
{
var unique = true;
if (UserSecurity.IsAuthorized(PageState.User, RoleNames.Host))