There is a mistake in taxonomy.module line [179] that causes the pager to be displayed inside the table. therefor the underlying table background color is visible behind the pager, whats wrong. This bug maybe in drupal 5, too (not checked). The Drupal URL for e.g. is "admin/taxonomy/2"

  $GLOBALS['pager_page_array'][] = $start_from;  // FIXME
  $GLOBALS['pager_total'][] = intval($total_entries / $page_increment) + 1; // FIXME

  if ($total_entries >= $page_increment) {
    $rows[] = array(array('data' => theme('pager', NULL, $page_increment), 'colspan' => '2'));
  }

  return theme('table', $header, $rows, array('id' => 'taxonomy'));

Attached the screenshot.

CommentFileSizeAuthor
bug_taxonomy.png3.22 KBhass

Comments

hass’s picture

Version: 4.7.x-dev » 4.7.0
Status: Active » Closed (won't fix)