=== modified file 'uc_attribute/uc_attribute.admin.inc'
--- uc_attribute/uc_attribute.admin.inc	2009-06-09 15:01:27 +0000
+++ uc_attribute/uc_attribute.admin.inc	2009-06-18 12:54:02 +0000
@@ -813,7 +813,7 @@
  * @ingroup themeable
  */
 function theme_uc_object_options_form($form) {
-  $header = array(t('Options'), t('Default'), t('Cost'), t('Price'), t('Weight'), t('List position'));
+  $header = array(theme('table_select_header_cell'), t('Options'), t('Default'), t('Cost'), t('Price'), t('Weight'), t('List position'));
   $table_id_num = $tables = 0;
 
   foreach (element_children($form['attributes']) as $key) {
@@ -823,8 +823,11 @@
     if (element_children($form['attributes'][$key]['default'])) {
 
       foreach (element_children($form['attributes'][$key]['default']) as $oid) {
+        $label = $form['attributes'][$key]['options'][$oid]['select']['#title'];
+        unset($form['attributes'][$key]['options'][$oid]['select']['#title']);
         $row = array(
           drupal_render($form['attributes'][$key]['options'][$oid]['select']),
+          $label,
           drupal_render($form['attributes'][$key]['default'][$oid]),
           drupal_render($form['attributes'][$key]['options'][$oid]['cost']),
           drupal_render($form['attributes'][$key]['options'][$oid]['price']),

