Changeset 24909
- Timestamp:
- 11/25/08 21:28:06 (6 weeks ago)
- Location:
- development
- Files:
-
- 2 modified
-
main/system/pnRender/plugins/function.pager.php (modified) (2 diffs)
-
zikula-1/system/pnRender/plugins/function.pager.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
development/main/system/pnRender/plugins/function.pager.php
r24770 r24909 36 36 * @param string $maxpages - optional maximum number of displayed pages, others will be hidden / suppressed 37 37 * (default: 0 = show all pages) 38 * @param string $display - optional choice from 'page' or 'startnum'. Show links using page number or starting item number38 * @param string $display - optional choice between 'page' or 'startnum'. Show links using page number or starting item number (default is page) 39 39 * @param string $class - optional class to apply to the pager container (default : pn-pager) 40 40 * @param bool $processDetailLinks - should the single page links be processed? (default: false if using pagerimage.html, otherwise true) … … 61 61 62 62 if (!isset($params['display'])) { 63 $params['display'] = ' startnum';63 $params['display'] = 'page'; 64 64 } 65 65 -
development/zikula-1/system/pnRender/plugins/function.pager.php
r24727 r24909 36 36 * @param string $maxpages - optional maximum number of displayed pages, others will be hidden / suppressed 37 37 * (default: 0 = show all pages) 38 * @param string $display - optional choice from 'page' or 'startnum'. Show links using page number or starting item number38 * @param string $display - optional choice between 'page' or 'startnum'. Show links using page number or starting item number (default is page) 39 39 * @param string $class - optional class to apply to the pager container (default : pn-pager) 40 40 * @param bool $processDetailLinks - should the single page links be processed? (default: false if using pagerimage.html, otherwise true) … … 61 61 62 62 if (!isset($params['display'])) { 63 $params['display'] = ' startnum';63 $params['display'] = 'page'; 64 64 } 65 65
