Fixed XmlDocument GetProperty to check for user properties 'invariantly'.

Added a method on content to remove the file persistence queue just before it's written based on the module, this should hopefully speed things up and fix some potential issues.
Added an overloaded method on library for UpdateDocumentCache which should save on a few dozen sql calls when publishing a node since we already have
the Document object reference yet we were looking it up again for no reason.
This commit is contained in:
Shannon Deminick
2012-09-02 07:35:57 +07:00
parent a293f53438
commit 2fc0fe574b
5 changed files with 41 additions and 13 deletions

View File

@@ -164,6 +164,7 @@ namespace Umbraco.Web
{
if (content.Instance.IsXmlQueuedForPersistenceToFile)
{
content.Instance.RemoveXmlFilePersistenceQueue();
content.Instance.PersistXmlToFile();
}
}