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:
@@ -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()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user