Corrected syntax error

--HG--
branch : dev
This commit is contained in:
Sebastien Ros
2010-06-02 17:19:15 -07:00
parent 8ce241434b
commit 923621bbbf

View File

@@ -60,7 +60,7 @@ namespace Orchard.Core.Common.Handlers {
.Add("author", commonAspect.Owner.UserName).Analyze(false)
.Add("created", commonAspect.CreatedUtc ?? _clock.UtcNow).Analyze(false)
.Add("published", commonAspect.PublishedUtc ?? _clock.UtcNow).Analyze(false)
.Add("modified", commonAspect.ModifiedUtc ?? _clock.UtcNow).Analyze(false))
.Add("modified", commonAspect.ModifiedUtc ?? _clock.UtcNow).Analyze(false)
);
}