Index: trunk/phase3/skins/common/wikibits.js |
— | — | @@ -686,7 +686,7 @@ |
687 | 687 | if((" "+row.className+" ").indexOf(" unsortable ") < 0) { |
688 | 688 | var keyText = ts_getInnerText(row.cells[column]); |
689 | 689 | var oldIndex = (reverse ? -j : j); |
690 | | - var preprocessed = preprocessor( keyText ); |
| 690 | + var preprocessed = preprocessor( keyText.replace(/^[\s\xa0]+/, "").replace(/[\s\xa0]+$/, "") ); |
691 | 691 | |
692 | 692 | newRows[newRows.length] = new Array(row, preprocessed, oldIndex); |
693 | 693 | } else staticRows[staticRows.length] = new Array(row, false, j-rowStart); |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1578,7 +1578,7 @@ |
1579 | 1579 | * to ensure that client-side caches do not keep obsolete copies of global |
1580 | 1580 | * styles. |
1581 | 1581 | */ |
1582 | | -$wgStyleVersion = '234'; |
| 1582 | +$wgStyleVersion = '235'; |
1583 | 1583 | |
1584 | 1584 | |
1585 | 1585 | # Server-side caching: |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -297,6 +297,7 @@ |
298 | 298 | * (bug 19287) Workaround for lag on history page in Firefox 3.5 |
299 | 299 | * (bug 19564) Updated docs/hooks.txt |
300 | 300 | * (bug 18751) Fix for buggage in profiling setup for some extensions on PHP 5.1 |
| 301 | +* (bug 17139) ts_resortTable inconsistent trimming makes date sorting fragile |
301 | 302 | |
302 | 303 | == API changes in 1.16 == |
303 | 304 | |