Index: taxonomy_delegate.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_delegate/taxonomy_delegate.module,v retrieving revision 1.1.2.4 diff -u -p -r1.1.2.4 taxonomy_delegate.module --- taxonomy_delegate.module 10 Mar 2008 16:38:09 -0000 1.1.2.4 +++ taxonomy_delegate.module 5 Nov 2008 21:28:39 -0000 @@ -240,11 +240,10 @@ function taxonomy_delegate_edit_form($vi $form['vocab'] = array( '#type' => 'fieldset', - '#title' => ''. $vocab->name ." (vid $vid)", + '#title' => $vocab->name ." (vid $vid)", '#description' => '

'. $vocab->description .'

', '#collapsible' => true, - '#collapsed' => false, - '#prefix' => '
', + '#collapsed' => false ); $form['vocab']['roles'] = array( @@ -303,7 +302,7 @@ function taxonomy_delegate_edit_form_sub */ function taxonomy_delegate_mycategories($op=null, $vid=null) { global $user; - $output = '
'; + $output = ''; // In the op checking sections below, we have to make sure we should be here to help prevent // cheaters who might be typing in the paths to avoid the legitimate security. @@ -346,9 +345,9 @@ function taxonomy_delegate_mycategories( $vocabs = _taxonomy_delegate_my_vocabularies(); foreach ($vocabs as $vid => $name) { - $rows[] = array(''. $name .'', - '  '. l(t('List terms'), 'category_admin/list/'. $vid), - '  '. l(t('Add terms'), 'category_admin/add/'. $vid), + $rows[] = array($name, + l(t('List terms'), 'category_admin/list/'. $vid), + l(t('Add terms'), 'category_admin/add/'. $vid), ); } $header = array( @@ -377,7 +376,7 @@ function taxonomy_delegate_overview_term } drupal_set_title(t('Terms for ') . check_plain($vocabulary->name)); - $output = '
'; + $output = ''; if ($vocabulary->tags) { $output .= '

'. t('This is a freetagging vocabulary.') .'

'; @@ -504,7 +503,7 @@ function taxonomy_delegate_settings_form '#default_value' => variable_get('taxonomy_delegate_hides', array()), '#description' => t('The selected fields will be hidden on the term add/edit page. Users with "administer taxonomy" permission will always see them.'), '#prefix' => '
', - '#suffix' => '

', + '#suffix' => '
', ); $form['taxonomy_delegate_menu'] = array(