diff --git a/modules/search.module b/modules/search.module
index ca5fca5edd745743d247d7d304ba7e2b741c33b9..9353e1028e7db62b0ecd57353bd620b0f4930eb9 100644
--- a/modules/search.module
+++ b/modules/search.module
@@ -863,7 +863,7 @@ function do_search($keywords, $type, $join1 = '', $where1 = '1', $arguments1 = a
   $count_query = "SELECT $count";
 
   // Do actual search query
-  $result = pager_query("SELECT * FROM temp_search_results", 10, 0, $count_query, $arguments);
+  $result = pager_query("SELECT * FROM temp_search_results", 10, 0, $count_query);
   $results = array();
   while ($item = db_fetch_object($result)) {
     $results[] = $item;
@@ -1204,7 +1204,7 @@ function theme_search_page($results, $type) {
     $output .= theme('search_item', $entry, $type);
   }
   $output .= '</dl>';
-  $output .= theme('pager', NULL, 15, 0);
+  $output .= theme('pager', NULL, 10, 0);
 
   return $output;
 }
diff --git a/modules/search/search.module b/modules/search/search.module
index ca5fca5edd745743d247d7d304ba7e2b741c33b9..9353e1028e7db62b0ecd57353bd620b0f4930eb9 100644
--- a/modules/search/search.module
+++ b/modules/search/search.module
@@ -863,7 +863,7 @@ function do_search($keywords, $type, $join1 = '', $where1 = '1', $arguments1 = a
   $count_query = "SELECT $count";
 
   // Do actual search query
-  $result = pager_query("SELECT * FROM temp_search_results", 10, 0, $count_query, $arguments);
+  $result = pager_query("SELECT * FROM temp_search_results", 10, 0, $count_query);
   $results = array();
   while ($item = db_fetch_object($result)) {
     $results[] = $item;
@@ -1204,7 +1204,7 @@ function theme_search_page($results, $type) {
     $output .= theme('search_item', $entry, $type);
   }
   $output .= '</dl>';
-  $output .= theme('pager', NULL, 15, 0);
+  $output .= theme('pager', NULL, 10, 0);
 
   return $output;
 }