? 361702-fapi-drupal-process-form-D7_0.patch
? node-filters.patch
? save_synonyms.patch
? teaser-length.patch
? sites/default/files
? sites/default/settings.php
Index: modules/taxonomy/taxonomy.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.admin.inc,v
retrieving revision 1.47
diff -u -p -r1.47 taxonomy.admin.inc
--- modules/taxonomy/taxonomy.admin.inc	14 Mar 2009 20:13:27 -0000	1.47
+++ modules/taxonomy/taxonomy.admin.inc	30 Mar 2009 03:12:17 -0000
@@ -509,7 +509,21 @@ function taxonomy_overview_terms_submit(
   // Save all updated terms.
   foreach ($changed_terms as $changed) {
     $term = (object)$changed;
-    taxonomy_term_save($term);
+    // Update term_hierachy and term_data directly since we don't have a
+    // fully populated term object to save.
+    db_update('term_hierarchy')
+      ->fields(array(
+        'parent' => $term->parent,
+      ))
+      ->condition('tid', $term->tid, '=')
+      ->execute();
+
+    db_update('term_data')
+      ->fields(array(
+        'weight' => $term->weight,
+      ))
+      ->condition('tid', $term->tid, '=')
+      ->execute();
   }
 
   // Update the vocabulary hierarchy to flat or single hierarchy.
