--- includes/pager.inc.orig 2005-01-27 10:45:22.575605821 -0500 +++ includes/pager.inc 2005-01-27 10:46:05.847022610 -0500 @@ -139,7 +139,7 @@ function theme_pager($tags = array(), $l */ function theme_pager_first($text, $limit, $element = 0, $attributes = array()) { global $pager_from_array; - $output = '
'; + $output = '
'; if ($pager_from_array[$element]) { $output .= ''. $text .''; @@ -171,7 +171,7 @@ function theme_pager_first($text, $limit */ function theme_pager_previous($text, $limit, $element = 0, $interval = 1, $attributes = array()) { global $pager_from_array; - $output = '
'; + $output = '
'; $from_new = pager_load_array(((int)$pager_from_array[$element] - ((int)$limit * (int)$interval)), $element, $pager_from_array); if ($from_new[$element] < 1) { $output .= theme('pager_first', $text, $limit, $element, $attributes); @@ -203,7 +203,7 @@ function theme_pager_previous($text, $li */ function theme_pager_next($text, $limit, $element = 0, $interval = 1, $attributes = array()) { global $pager_from_array, $pager_total; - $output = '
'; + $output = '
'; $from_new = pager_load_array(((int)$pager_from_array[$element] + ((int)$limit * (int)$interval)), $element, $pager_from_array); if ($from_new[$element] < $pager_total[$element]) { $output .= ''. $text .''; @@ -234,7 +234,7 @@ function theme_pager_next($text, $limit, function theme_pager_last($text, $limit, $element = 0, $attributes = array()) { global $pager_from_array, $pager_total; - $output = '
'; + $output = '
'; $last_num = (($pager_total[$element] % $limit) ? ($pager_total[$element] % $limit) : $limit); $from_new = pager_load_array(($pager_total[$element] - $last_num), $element, $pager_from_array); if ($from_new[$element] < ($pager_from_array[$element] + $limit)) { @@ -267,7 +267,7 @@ function theme_pager_last($text, $limit, function theme_pager_detail($limit, $element = 0, $format = '%d through %d of %d.') { global $pager_from_array, $pager_total; - $output = '
'; + $output = '
'; if ($pager_total[$element] > (int)$pager_from_array[$element] + 1) { $output .= sprintf($format, (int)$pager_from_array[$element] + 1, ((int)$pager_from_array[$element] + $limit <= $pager_total[$element] ? (int)$pager_from_array[$element] + $limit : $pager_total[$element]), $pager_total[$element]); } @@ -296,8 +296,8 @@ function theme_pager_detail($limit, $ele */ function theme_pager_list($limit, $element = 0, $quantity = 5, $text = '', $attributes = array()) { global $pager_from_array, $pager_total; - $output = '
'; + $output = '
'; // Calculate various markers within this pager piece: // Middle is used to "center" pages around the current page. $pager_middle = ceil((int)$quantity / 2); @@ -340,7 +340,7 @@ function theme_pager_list($limit, $eleme if ($i != $pager_max) { $output .= $text; if ($i > 1) { - $output .= '... '; + $output .= '
...
'; } } $output .= '
';