Index: misc/tabledrag.js =================================================================== RCS file: /cvs/drupal/drupal/misc/tabledrag.js,v retrieving revision 1.13.2.4 diff -u -u -p -r1.13.2.4 tabledrag.js --- misc/tabledrag.js 17 Sep 2008 07:59:39 -0000 1.13.2.4 +++ misc/tabledrag.js 8 Mar 2009 10:08:16 -0000 @@ -409,7 +409,7 @@ Drupal.tableDrag.prototype.dragRow = fun if (self.indentEnabled) { var xDiff = self.currentMouseCoords.x - self.dragObject.indentMousePos.x; // Set the number of indentations the mouse has been moved left or right. - var indentDiff = Math.round(xDiff / self.indentAmount * self.rtl); + var indentDiff = Math.round(xDiff / self.indentAmount); // Indent the row with our estimated diff, which may be further // restricted according to the rows around this row. var indentChange = self.rowObject.indent(indentDiff);