Hie,
I've worked on Bug 8513 :
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8513
The source of this bug is that an anchor tag (<a>) is build
without content.
With actual version, the generated code is : <a href="..." />
That is what causes a really odd broken page (see bug details).
Now, I notices that in XSLTs, the output method is XML.
If I use XHTML method, the anchor is generated like this : <a
href="..." ></a>
And in this case, page is not broken. The anchor is just not
visible.
I corrected bug in XSLT without changing method but I wonder, why
using XML method ?
XHTML method corresponds to the usage, and can avoid a lot of bugs
like n°8513.
I even prefer HTML method. It is not good to break if generated code
is not XHTML but just HTML.
Best regards,