From b28c784fd0afcab69ba719427ca8d75f772a736c Mon Sep 17 00:00:00 2001 From: nicolasconnault Date: Tue, 8 Sep 2009 08:39:30 +0000 Subject: [PATCH] MDL-19799 Upgraded calls to print_paging_bar --- lib/tablelib.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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)) { -- 2.39.5