#20641: Fixing List pager

Work Item: 20641
This commit is contained in:
j3ffb
2014-06-13 12:43:37 -07:00
committed by Sebastien Ros
parent be3abdb015
commit 3a0fda4f92

View File

@@ -71,7 +71,7 @@ namespace Orchard.Core.Containers.Services {
public IContentQuery<ContainerPart> GetContainersQuery(VersionOptions options = null) {
options = options ?? VersionOptions.Published;
return _contentManager.Query<ContainerPart>(options);
return _contentManager.Query<ContainerPart, ContainerPartRecord>(options);
}
public ContainerPart Get(int id, VersionOptions options = null) {