Changeset 1926:9e3008aad0ff for plugins/pages/list.php
- Timestamp:
- 09/17/13 10:30:36 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/pages/list.php
r1912 r1926 25 25 else 26 26 { 27 $pager = new pager($page,$this->rs_count,$nb_per_page,10); 28 $pager->html_prev = $this->html_prev; 29 $pager->html_next = $this->html_next; 30 $pager->var_page = 'page'; 27 $pager = new dcPager($page,$this->rs_count,$nb_per_page,10); 31 28 32 29 $html_block = … … 44 41 } 45 42 46 echo '<p class="pagination">'.__('Page(s)').' : '.$pager->getLinks().'</p>';43 echo $pager->getLinks(); 47 44 48 45 $blocks = explode('%s',$html_block); … … 57 54 echo $blocks[1]; 58 55 59 echo '<p class="pagination">'.__('Page(s)').' : '.$pager->getLinks().'</p>';56 echo $pager->getLinks(); 60 57 } 61 58 }
Note: See TracChangeset
for help on using the changeset viewer.