Merge branch 'wip-MDL-30316-master' of git://github.com/phalacee/moodle
This commit is contained in:
@@ -2272,15 +2272,14 @@ class paging_bar implements renderable {
|
||||
$lastpage = 1;
|
||||
}
|
||||
|
||||
if ($this->page > 15) {
|
||||
$startpage = $this->page - 10;
|
||||
if ($this->page > round(($this->maxdisplay/3)*2)) {
|
||||
$currpage = $this->page - round($this->maxdisplay/3);
|
||||
|
||||
$this->firstlink = html_writer::link(new moodle_url($this->baseurl, array($this->pagevar=>0)), '1', array('class'=>'first'));
|
||||
} else {
|
||||
$startpage = 0;
|
||||
$currpage = 0;
|
||||
}
|
||||
|
||||
$currpage = $startpage;
|
||||
$displaycount = $displaypage = 0;
|
||||
|
||||
while ($displaycount < $this->maxdisplay and $currpage < $lastpage) {
|
||||
|
||||
Reference in New Issue
Block a user