Index: includes/pager.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/pager.inc,v retrieving revision 1.45 diff -u -F^f -r1.45 pager.inc --- includes/pager.inc 30 Jul 2005 12:52:54 -0000 1.45 +++ includes/pager.inc 1 Aug 2005 20:17:55 -0000 @@ -266,35 +266,6 @@ function theme_pager_last($text, $limit, } /** - * Format a summary of the current pager position, such as "6 through 10 of 52". - * - * @param $limit - * The number of query results to display per page. - * @param $element - * An optional integer to distinguish between multiple pagers on one page. - * @param $format - * A printf-style format string for customizing the pager text. - * @return - * An HTML string that generates this piece of the query pager. - * - * @ingroup themeable - */ -function theme_pager_detail($limit, $element = 0, $format = '%d through %d of %d.') { - global $pager_page_array, $pager_total, $pager_total_items; - - $output = '
'; - if ($pager_total[$element] > 1) { - $output .= sprintf($format, - $pager_page_array[$element] * $limit + 1, - min($pager_total_items[$element], ($pager_page_array[$element] + 1) * $limit), - $pager_total_items[$element]); - } - $output .= '
'; - - return $output; -} - -/** * Format a list of nearby pages with additional query results. * * @param $limit