Index: trunk/phase3/skins/common/wikibits.js |
— | — | @@ -614,7 +614,7 @@ |
615 | 615 | sortfn = ts_sort_date; |
616 | 616 | if (itm.match(/^\d\d[\/.-]\d\d[\/.-]\d\d$/)) |
617 | 617 | sortfn = ts_sort_date; |
618 | | - if (itm.match(/^[\u00a3$\u20ac]/)) // pound dollar euro |
| 618 | + if (itm.match(/^[\u00a3$\u20ac\u00a5]/)) // pound dollar euro yen |
619 | 619 | sortfn = ts_sort_currency; |
620 | 620 | if (itm.match(/^[\d.,]+\%?$/)) |
621 | 621 | sortfn = ts_sort_numeric; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -112,6 +112,7 @@ |
113 | 113 | * Added an on-wiki external image whitelist. Items in this whitelist are |
114 | 114 | treated as regular expression fragments to match for when possibly |
115 | 115 | displaying an external image inline. |
| 116 | +* (bug 15405) Sort yen correctly in sortable tables |
116 | 117 | |
117 | 118 | === Bug fixes in 1.14 === |
118 | 119 | |