Fixed ImportChildEl implementation.

The overloaded method was invoking ImportAttribute instead of ImportChildEl.
This commit is contained in:
Sipke Schoorstra
2015-02-20 15:05:51 +01:00
parent edfc16e491
commit 802bf9b835

View File

@@ -47,7 +47,7 @@ namespace Orchard.ContentManagement.Handlers {
}
public void ImportChildEl(string elementName, string childElementName, Action<string> value) {
ImportAttribute(elementName, childElementName, value, () => { });
ImportChildEl(elementName, childElementName, value, () => { });
}
public void ImportChildEl(string elementName, string childElementName, Action<string> value, Action empty) {