fix HasImage()

This commit is contained in:
Mike
2017-03-31 17:24:18 +02:00
parent ed3096642d
commit 8d8bb4e237

View File

@@ -76,7 +76,7 @@ namespace Umbraco.Web.Models
public bool HasImage()
{
return string.IsNullOrEmpty(Src);
return ! string.IsNullOrEmpty(Src);
}
public string ToHtmlString()