From: nicolasconnault Date: Tue, 8 Sep 2009 08:39:30 +0000 (+0000) Subject: MDL-19799 Upgraded calls to print_paging_bar X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=b28c784fd0afcab69ba719427ca8d75f772a736c;p=moodle.git MDL-19799 Upgraded calls to print_paging_bar --- diff --git a/lib/tablelib.php b/lib/tablelib.php index ccfd43cda2..ef916e89f9 100644 --- a/lib/tablelib.php +++ b/lib/tablelib.php @@ -1005,7 +1005,9 @@ class flexible_table { echo $this->download_buttons(); } if($this->use_pages) { - print_paging_bar($this->totalrows, $this->currpage, $this->pagesize, $this->baseurl, $this->request[TABLE_VAR_PAGE]); + $pagingbar = moodle_paging_bar::make($this->totalrows, $this->currpage, $this->pagesize, $this->baseurl); + $pagingbar->pagevar = $this->request[TABLE_VAR_PAGE]; + echo $OUTPUT->paging_bar($pagingbar); } } } @@ -1121,13 +1123,15 @@ class flexible_table { * This function is not part of the public api. */ function start_html(){ - + global $OUTPUT; // Do we need to print initial bars? $this->print_initials_bar(); // Paging bar if($this->use_pages) { - print_paging_bar($this->totalrows, $this->currpage, $this->pagesize, $this->baseurl, $this->request[TABLE_VAR_PAGE]); + $pagingbar = moodle_paging_bar::make($this->totalrows, $this->currpage, $this->pagesize, $this->baseurl); + $pagingbar->pagevar = $this->request[TABLE_VAR_PAGE]; + echo $OUTPUT->paging_bar($pagingbar); } if(in_array(TABLE_P_TOP, $this->showdownloadbuttonsat)) {