diff options
author | Bharat Mediratta <bharat@menalto.com> | 2011-04-26 09:48:21 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2011-04-26 09:48:21 -0700 |
commit | 5cf38ed816006af52fa08475d2957a6f18846887 (patch) | |
tree | afc496762fad5527ef6b17508096ec38601b0f34 /modules/comment/views | |
parent | c6d1d6a6aed96f772690b74ac0be482bc2128a8d (diff) |
Stop using Pagination() and instead use $theme->pager() in views.
Move the pager() function up to Gallery_View and replace
themes/admin_wind/views/pager.html.php (Pagination based) with a
modified version from the wind theme in
themes/admin_wind/views/paginator.html.php. Fixes #1718.
Diffstat (limited to 'modules/comment/views')
-rw-r--r-- | modules/comment/views/admin_manage_comments.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/views/admin_manage_comments.html.php b/modules/comment/views/admin_manage_comments.html.php index 34a28986..e7a61837 100644 --- a/modules/comment/views/admin_manage_comments.html.php +++ b/modules/comment/views/admin_manage_comments.html.php @@ -194,7 +194,7 @@ </table> <div class="g-paginator"> - <?= $pager ?> + <?= $theme->paginator() ?> </div> </div> |