Bug 3423 - In Cataloging, fields are not ordered by tag number

In cataloging, depending on installation and how biblio framework has been
created/modified, fields are not displayed ordered by tag number. For example,
in UNIMARC you can have in tab '2':

  225
  200
  210

This patch order fields in tabs by tag and letter in the tag.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
This commit is contained in:
Frédéric Demians 2009-07-15 21:59:56 +02:00 committed by Galen Charlton
parent 54dad0143c
commit a073d84092

View file

@ -938,6 +938,7 @@ sub GetUsedMarcStructure($){
FROM marc_subfield_structure
WHERE tab > -1
AND frameworkcode = ?
ORDER BY tagfield, tagsubfield
/;
my @results;
my $sth = $dbh->prepare($query);