From 6a9d9d50272b92ecef488853ed4b9293d7024469 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Wed, 24 Jul 2013 22:35:15 +0200 Subject: [PATCH] Issue #2030817 by mondrake: Fixed Wrong link_type() passed in link's pager_context() in views.theme.inc. --- core/modules/views/views.theme.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/views/views.theme.inc b/core/modules/views/views.theme.inc index 8c542f44ac9..c5271f22004 100644 --- a/core/modules/views/views.theme.inc +++ b/core/modules/views/views.theme.inc @@ -1151,7 +1151,7 @@ function theme_views_mini_pager($variables) { // Below is ignored by default, supplied to support hook_link_alter // implementations. 'pager_context' => array( - 'link_type' => 'previous', + 'link_type' => 'next', 'element' => $element, 'interval' => 1, ),