New dashboard config classes all tested

This commit is contained in:
Shannon
2013-10-03 17:50:42 +10:00
parent e2f9b1c7d9
commit b9257fceeb
6 changed files with 136 additions and 14 deletions

View File

@@ -25,8 +25,8 @@ namespace Umbraco.Core.Configuration
//now validate and set the raw value
if (RawXml.HasElements)
throw new InvalidOperationException("An InnerTextConfigurationElement cannot contain any child elements, only attributes and a value");
RawValue = RawXml.Value;
RawValue = RawXml.Value.Trim();
//RawValue = reader.ReadElementContentAsString();
}