Issue #2229771 by Alan D.: Fixed Pager quantity of 10 is inconsistent with the rest of core.

8.0.x
Alex Pott 2014-07-07 13:17:25 +01:00
parent fe76b9a0ed
commit 49034dabb3
1 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@ function views_theme($existing, $type, $theme, $path) {
// Our extra version of pager from pager.inc
$hooks['views_mini_pager'] = $base + array(
'variables' => array('tags' => array(), 'quantity' => 10, 'element' => 0, 'parameters' => array()),
'variables' => array('tags' => array(), 'quantity' => 9, 'element' => 0, 'parameters' => array()),
'template' => 'views-mini-pager',
);
@ -134,7 +134,7 @@ function views_theme($existing, $type, $theme, $path) {
'exposed_form' => array('view' => NULL, 'options' => NULL),
'pager' => array(
'view' => NULL, 'options' => NULL,
'tags' => array(), 'quantity' => 10, 'element' => 0, 'parameters' => array()
'tags' => array(), 'quantity' => 9, 'element' => 0, 'parameters' => array()
),
);