Index: edit_term.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/edit_term/edit_term.module,v retrieving revision 1.3.2.3 diff -u -p -r1.3.2.3 edit_term.module --- edit_term.module 27 May 2009 23:48:42 -0000 1.3.2.3 +++ edit_term.module 24 Jun 2009 01:43:14 -0000 @@ -358,12 +358,12 @@ function edit_term_taxonomy($op, $type, // Also update term alias if (module_exists('path')) { if (isset($term->path)) { + // Will DELETE the alias that used to apply to this term if $term->path == "". path_set_alias($termpath, $term->path); } else { - // Should DELETE the alias that used to apply to this term. - path_set_alias($termpath); - // path_set_alias($path, $alias, $pid); + // Disabled to prevent the alias from being deleted during drag and drop re-weighting. + // path_set_alias($termpath); } } break;