? farbtastic/Thumbs.db Index: tableselect.js =================================================================== RCS file: /cvs/drupal/drupal/misc/tableselect.js,v retrieving revision 1.8 diff -u -p -r1.8 tableselect.js --- tableselect.js 19 Nov 2007 12:15:16 -0000 1.8 +++ tableselect.js 28 Sep 2008 01:14:44 -0000 @@ -18,6 +18,12 @@ Drupal.tableSelect = function() { $(this).attr('title', state ? strings.selectNone : strings.selectAll); this.checked = state; }); + + // Update the cloned header select all checkbox. + $(table).prev().find('th.select-all input:checkbox').each(function() { + $(this).attr('title', state ? strings.selectNone : strings.selectAll); + this.checked = state; + }); }; // Find all with class select-all, and insert the check all checkbox.