Fixing compilation

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros
2011-12-01 15:04:47 -08:00
parent 8919eaa514
commit 4e77c09e37
3 changed files with 7 additions and 3 deletions

View File

@@ -9,6 +9,7 @@ using Orchard.Core.Feeds;
using Orchard.Core.Feeds.Models;
using Orchard.Core.Feeds.StandardBuilders;
using Orchard.Localization;
using Orchard.Services;
namespace Orchard.Comments.Feeds {
[UsedImplicitly]
@@ -29,7 +30,8 @@ namespace Orchard.Comments.Feeds {
var commentedOn = _contentManager.Get(feedItem.Item.Record.CommentedOn);
var commentedOnInspector = new ItemInspector(
commentedOn,
_contentManager.GetItemMetadata(commentedOn));
_contentManager.GetItemMetadata(commentedOn),
Enumerable.Empty<IHtmlFilter>());
var title = T("Comment on {0} by {1}", commentedOnInspector.Title, comment.Record.Author);