From 23572c8e209cae3459c08b24c874ab7b4fec877c Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Mon, 6 Aug 2007 10:18:36 +0000 Subject: [PATCH] Problem: Rows in tables with more than 10 rows get sorted into incorrect order. Cause: Code in manpages table handler does sorting, using xsl:sort, to deal with instances of cells that span multiple rows. But that sorting was being done alphabetically rather than numerically -- the reason being that the default sort method for xsl:sort is "text" (alphabetical). Fix: Added @data-type=number to relevant xsl:sort instances in table code. Closes #1763332. Thanks to kesuke. --- xsl/manpages/table.xsl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/xsl/manpages/table.xsl b/xsl/manpages/table.xsl index 6d2d159ee..5a1bb9d1d 100644 --- a/xsl/manpages/table.xsl +++ b/xsl/manpages/table.xsl @@ -254,7 +254,6 @@ - @@ -322,10 +321,12 @@ - + + + - - + + -- 2.50.1