Index: biblio_theme.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/biblio/biblio_theme.inc,v retrieving revision 1.8.2.72 diff -u -p -r1.8.2.72 biblio_theme.inc --- biblio_theme.inc 25 May 2009 20:23:09 -0000 1.8.2.72 +++ biblio_theme.inc 26 May 2009 19:07:43 -0000 @@ -775,14 +775,14 @@ function theme_biblio_admin_types_edit_f 'title' => $oid); } } - $conf_row[] = array('data' => drupal_render($form['configured_flds'][$fld]['weight'])); + $conf_row[] = array('data' => drupal_render($form['configured_flds'][$fld]['weight']), 'class' => 'js-hide'); $conf_table[] = array('data' => $conf_row, 'class' => 'draggable'); } if ($tid) { - $header = array(t('Field Name'), t('Title'), t('Hint'), '', t('Visible'), t('Required'), t('Weight')); + $header = array(t('Field Name'), t('Title'), array('data' => t('Hint'), 'colspan' => 2), t('Visible'), t('Required'), array('data' => t('Weight'), 'class' => 'js-hide')); } else { - $header = array(t('Field Name'), t('Default Title'), t('Hint'), '', t('Common'), t('Required'), t('Autocomplete'), t('Weight')); + $header = array(t('Field Name'), t('Default Title'), array('data' => t('Hint'), 'colspan' => 2), t('Common'), t('Required'), t('Autocomplete'), array('data' => t('Weight'), 'class' => 'js-hide')); } $output .= '

'; $output .= '

'. drupal_render($form['top_message']) .'

';