Closed (won't fix)
Project:
Drupal core
Version:
4.7.0
Component:
taxonomy.module
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
10 Feb 2007 at 18:25 UTC
Updated:
31 Oct 2010 at 23:06 UTC
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.
| Comment | File | Size | Author |
|---|---|---|---|
| bug_taxonomy.png | 3.22 KB | hass |
Comments
Comment #1
hass commented