Added a fake getter method to .Items on DynamicNodeList that was tripping up the latest uBlogsy beta. Could be a backwards compatibility issue

This commit is contained in:
agrath
2011-09-22 13:10:01 -12:00
parent 10529d9a9a
commit b7caa18309

View File

@@ -15,6 +15,10 @@ namespace umbraco.MacroEngines
public class DynamicNodeList : DynamicObject, IEnumerable
{
public List<DynamicNode> Items;
public List<DynamicNode> get_Items()
{
return Items;
}
public DynamicNodeList()
{