Rerun
authorJoe Hunt <joe.hunt.consulting@gmail.com>
Wed, 24 Feb 2010 16:06:37 +0000 (16:06 +0000)
committerJoe Hunt <joe.hunt.consulting@gmail.com>
Wed, 24 Feb 2010 16:06:37 +0000 (16:06 +0000)
includes/ui/ui_lists.inc

index bc7fedef4ca105a58646328d7a2f26be5a5af0af..bcccdefb94560fd8e30b5e69baa0f11473cbc00c 100644 (file)
@@ -1987,14 +1987,15 @@ function quick_entries_list($name, $selected_id=null, $type=null, $submit_on_cha
 function quick_entries_list_cells($label, $name, $selected_id=null, $type, $submit_on_change=false)
 {
        if ($label != null)
-               echo "<td>$label</td><td>\n";
+               echo "<td>$label</td>\n";
+       echo "<td>";    
        echo quick_entries_list($name, $selected_id, $type, $submit_on_change);
        echo "</td>";
 }
 
 function quick_entries_list_row($label, $name, $selected_id=null, $type, $submit_on_change=false)
 {
-       echo "<tr><td class='label'>$label</td><td>";
+       echo "<tr><td class='label'>$label</td>";
        quick_entries_list_cells(null, $name, $selected_id, $type, $submit_on_change);
        echo "</tr>\n";
 }