diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-01-25 22:14:06 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-01-25 22:14:06 +0000 |
commit | 3b543c18f58bf0aa4fe5eec7071a88d58a003e9f (patch) | |
tree | 22170f583ede8364a19bfaa1afdd017e20868914 /modules/taxonomy | |
parent | db7dcfd444e16cd860b74dd1f874ebca62461d4c (diff) | |
download | brdo-3b543c18f58bf0aa4fe5eec7071a88d58a003e9f.tar.gz brdo-3b543c18f58bf0aa4fe5eec7071a88d58a003e9f.tar.bz2 |
- Rollback of E_ALL patch. Too much extra breakage.
Diffstat (limited to 'modules/taxonomy')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 2ecc1a6da..6df04ac84 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -716,7 +716,7 @@ function taxonomy_form_alter($form_id, &$form) { $form['taxonomy'][$vocabulary->vid]['#required'] = $vocabulary->required; } } - if (isset($form['taxonomy']) && is_array($form['taxonomy']) && !empty($form['taxonomy'])) { + if (is_array($form['taxonomy']) && !empty($form['taxonomy'])) { if (count($form['taxonomy']) > 1) { // Add fieldset only if form has more than 1 element. $form['taxonomy'] += array( '#type' => 'fieldset', |