--- template.php.orig	2011-08-19 08:46:48.000000000 +0000
+++ template.php	2011-12-02 09:17:02.000000000 +0000
@@ -600,6 +600,19 @@
  */
 function _rubik_filter_form_alter(&$form) {
   $found = FALSE;
+  $multiple_fields = FALSE;
+
+  // Unlimited value CCK fields should not be altered
+  // to avoid breaking the AHAH drag n drop and 'Add more'
+  // functionality.
+  if (isset($form['#field_name'])) {
+    $field_name = $form['#field_name'];
+    $field = content_fields($field_name);
+    if ($field['multiple'] > 0) {
+      $multiple_fields = TRUE;
+    }
+  }
+
   foreach (element_children($form) as $id) {
     // Filter form element found
     if (
@@ -607,12 +620,18 @@
       is_array($form[$id]['#element_validate']) &&
       in_array('filter_form_validate', $form[$id]['#element_validate'])
     ) {
+      if ($multiple_fields === TRUE) {
+        continue;
+      }
       $form[$id]['#type'] = 'markup';
       $form[$id]['#theme'] = 'filter_form';
       $found = TRUE;
     }
     // Formatting guidelines element found
     elseif ($id == 'format' && !empty($form[$id]['format']['guidelines'])) {
+      if ($multiple_fields === TRUE) {
+        continue;
+      }
       $form[$id]['#theme'] = 'filter_form';
       $found = TRUE;
     }
