Hi,
i've noticed strange thing - text field named Note does not save changes when creating/editing content.
so i go to Orchard sources (Orchard 1.6)
\Orchard.Web\Core\Common\Drivers\TextFieldDriver.cs
to method
DriverResult Editor(ContentPart part, TextField field, IUpdateModel updater, dynamic shapeHelper)
and i was surprised when i saw these lines:
if(field.Name == "Note") {
throw new ArgumentException();
}
so, my question is - what are these lines for?
|