Index: misc/tableselect.js
===================================================================
RCS file: /cvs/drupal/drupal/misc/tableselect.js,v
retrieving revision 1.6
diff -u -r1.6 tableselect.js
--- misc/tableselect.js	12 Sep 2007 18:29:32 -0000	1.6
+++ misc/tableselect.js	14 Nov 2007 04:07:23 -0000
@@ -6,23 +6,28 @@
 
 Drupal.tableSelect = function() {
   // Keep track of the table, which checkbox is checked and alias the settings.
-  var table = this, selectAll, checkboxes, lastChecked;
+  var table = this, checkboxes, lastChecked;
   var strings = { 'selectAll': Drupal.t('Select all rows in this table'), 'selectNone': Drupal.t('Deselect all rows in this table') };
-
-  // Store the select all checkbox in a variable as we need it quite often.
-  selectAll = $('<input type="checkbox" class="form-checkbox" />').attr('title', strings.selectAll).click(function() {
-    // Loop through all checkboxes and set their state to the select all checkbox' state.
-    checkboxes.each(function() {
-      this.checked = selectAll[0].checked;
-      // Either add or remove the selected class based on the state of the check all checkbox.
-      $(this).parents('tr:first')[ this.checked ? 'addClass' : 'removeClass' ]('selected');
+  var updateSelectAll = function(state) {
+    $('th.select-all input:checkbox', table).each(function() {
+      $(this).attr('title', state ? strings.selectNone : strings.selectAll);
+      this.checked = state;
     });
-    // Update the title and the state of the check all box.
-    selectAll.attr('title', selectAll[0].checked ? strings.selectNone : strings.selectAll);
-  });
+  };
 
   // Find all <th> with class select-all, and insert the check all checkbox.
-  $('th.select-all', table).prepend(selectAll);
+  $('th.select-all', table).prepend($('<input type="checkbox" class="form-checkbox" />').attr('title', strings.selectAll)).click(function(event) {
+    if ($(event.target).is('input:checkbox')) {
+      // Loop through all checkboxes and set their state to the select all checkbox' state.
+      checkboxes.each(function() {
+        this.checked = event.target.checked;
+        // Either add or remove the selected class based on the state of the check all checkbox.
+        $(this).parents('tr:first')[ this.checked ? 'addClass' : 'removeClass' ]('selected');
+      });
+      // Update the title and the state of the check all box.
+      updateSelectAll(event.target.checked);
+    }
+  });
 
   // For each of the checkboxes within the table.
   checkboxes = $('td input:checkbox', table).click(function(e) {
@@ -38,9 +43,7 @@
     }
 
     // If all checkboxes are checked, make sure the select-all one is checked too, otherwise keep unchecked.
-    selectAll[0].checked = (checkboxes.length == $(checkboxes).filter(':checked').length);
-    // Set the title to the current action.
-    selectAll.attr('title', selectAll[0].checked ? strings.selectNone : strings.selectAll);
+    updateSelectAll((checkboxes.length == $(checkboxes).filter(':checked').length));
 
     // Keep track of the last checked checkbox.
     lastChecked = e.target;
