Index: view.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/includes/view.inc,v
retrieving revision 1.116
diff -u -r1.116 view.inc
--- view.inc	3 Jul 2008 18:01:44 -0000	1.116
+++ view.inc	10 Jul 2008 03:47:21 -0000
@@ -655,7 +655,7 @@
           // dump information about what we already know into the globals
           global $pager_page_array, $pager_total, $pager_total_items;
           // total rows in query
-          $pager_total_items[$this->pager['element']] = $this->total_rows;
+          $pager_total_items[$this->pager['element']] = $this->total_rows - $this->pager['offset'];
           // total pages
           $pager_total[$this->pager['element']] = ceil($pager_total_items[$this->pager['element']] / $this->pager['items_per_page']);
 

