Index: dreditor.user.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/dreditor/dreditor.user.js,v
retrieving revision 1.54
diff -u -p -r1.54 dreditor.user.js
--- dreditor.user.js	20 Nov 2010 04:11:06 -0000	1.54
+++ dreditor.user.js	20 Nov 2010 05:12:34 -0000
@@ -1160,6 +1160,10 @@ Drupal.behaviors.dreditorCommitMessage =
           for (var key in counts) {
             temp.push([ counts[key], key ]);
           }
+          // Reverse temp first, that way when we push the values to result
+          // any submitters with equal amount of patches will be order in the
+          // order they where posted, instead of the order they're being pushed.
+          temp.reverse();
           temp.sort(function (a, b) {
             return a[0] > b[0];
           });
