Skip to content

Commit

Permalink
Fixing the PaginatorHelper, passed wrong argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Krämer committed Jan 13, 2015
1 parent b38b993 commit b4dd7a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/View/Helper/PaginatorHelper.php
Expand Up @@ -702,7 +702,7 @@ protected function _modulusNumbers($templater, $params, $options)

extract($this->_getNumbersStartAndEnd($params, $options));

$out .= $this->_firstNumber($ellipsis, $params, $end, $options);
$out .= $this->_firstNumber($ellipsis, $params, $start, $options);

$out .= $options['before'];

Expand Down Expand Up @@ -913,6 +913,7 @@ public function last($last = 'last >>', array $options = [])
}
return $out;
}

/**
* Returns the meta-links for a paginated result set.
*
Expand Down

0 comments on commit b4dd7a0

Please sign in to comment.