From 3a0fda4f92fe13cf95130f085a58dbc46226340c Mon Sep 17 00:00:00 2001 From: j3ffb Date: Fri, 13 Jun 2014 12:43:37 -0700 Subject: [PATCH] #20641: Fixing List pager Work Item: 20641 --- src/Orchard.Web/Core/Containers/Services/ContainerService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Orchard.Web/Core/Containers/Services/ContainerService.cs b/src/Orchard.Web/Core/Containers/Services/ContainerService.cs index d63738d4b..c653bd28e 100644 --- a/src/Orchard.Web/Core/Containers/Services/ContainerService.cs +++ b/src/Orchard.Web/Core/Containers/Services/ContainerService.cs @@ -71,7 +71,7 @@ namespace Orchard.Core.Containers.Services { public IContentQuery GetContainersQuery(VersionOptions options = null) { options = options ?? VersionOptions.Published; - return _contentManager.Query(options); + return _contentManager.Query(options); } public ContainerPart Get(int id, VersionOptions options = null) {