Merge pull request #528 from kinglozzer/injector

Use Injector for creating paginated list of blog posts
This commit is contained in:
Daniel Hensby 2018-04-16 12:09:50 +01:00 committed by GitHub
commit 66c7881410
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -1030,7 +1030,7 @@ class Blog_Controller extends Page_Controller
{
$allPosts = $this->blogPosts ?: new ArrayList();
$posts = new PaginatedList($allPosts);
$posts = PaginatedList::create($allPosts);
// Set appropriate page size
if ($this->PostsPerPage > 0) {