Created
September 16, 2010 04:51
-
-
Save mcantelon/581974 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fresh_media_preprocess_views_views_json_style_simple(&$vars) { | |
global $pager_total, $pager_page_array; | |
$element = $vars['view']->pager['element']; | |
$vars['rows']['pager'] = array( | |
'total' => $pager_total[$element], | |
'current' => $pager_page_array[$element] | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment