Index: dreditor.user.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/dreditor/dreditor.user.js,v
retrieving revision 1.53
diff -u -p -r1.53 dreditor.user.js
--- dreditor.user.js	25 Oct 2010 18:45:37 -0000	1.53
+++ dreditor.user.js	20 Nov 2010 04:22:36 -0000
@@ -1160,6 +1160,11 @@ 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];
           });
