fixed glitch in display of current time filter in OPAC top issues
[koha.git] / opac / opac-detail.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20
21 use strict;
22 use warnings;
23
24 use CGI;
25 use C4::Auth;
26 use C4::Branch;
27 use C4::Koha;
28 use C4::Serials;    #uses getsubscriptionfrom biblionumber
29 use C4::Output;
30 use C4::Biblio;
31 use C4::Items;
32 use C4::Circulation;
33 use C4::Tags qw(get_tags);
34 use C4::Dates qw/format_date/;
35 use C4::XISBN qw(get_xisbns get_biblionumber_from_isbn get_biblio_from_xisbn);
36 use C4::External::Amazon;
37 use C4::Review;
38 use C4::Serials;
39 use C4::Members;
40 use C4::XSLT;
41
42 BEGIN {
43         if (C4::Context->preference('BakerTaylorEnabled')) {
44                 require C4::External::BakerTaylor;
45                 import C4::External::BakerTaylor qw(&image_url &link_url);
46         }
47 }
48
49 my $query = new CGI;
50 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
51     {
52         template_name   => "opac-detail.tmpl",
53         query           => $query,
54         type            => "opac",
55         authnotrequired => 1,
56         flagsrequired   => { borrow => 1 },
57     }
58 );
59
60 my $biblionumber = $query->param('biblionumber') || $query->param('bib');
61 my $record       = GetMarcBiblio($biblionumber);
62 $template->param( biblionumber => $biblionumber );
63 # XSLT processing of some stuff
64 if (C4::Context->preference("XSLTDetailsDisplay") ) {
65     my $newxmlrecord = XSLTParse4Display($biblionumber,C4::Context->config('opachtdocs')."/prog/en/xslt/MARC21slim2OPACDetail.xsl");
66     $template->param('XSLTBloc' => $newxmlrecord);
67 }
68
69 # change back when ive fixed request.pl
70 my @all_items = &GetItemsInfo( $biblionumber, 'opac' );
71 my @items;
72 @items = @all_items unless C4::Context->preference('hidelostitems');
73
74 if (C4::Context->preference('hidelostitems')) {
75     # Hide host items
76     for my $itm (@all_items) {
77         push @items, $itm unless $itm->{itemlost};
78     }
79 }
80 my $dat = &GetBiblioData($biblionumber);
81
82 if (!$dat) {
83     print $query->redirect("/cgi-bin/koha/errors/404.pl");
84     exit;
85 }
86 my $itemtypes = GetItemTypes();
87 # imageurl:
88 my $itemtype = $dat->{'itemtype'};
89 if ( $itemtype ) {
90     $dat->{'imageurl'}    = getitemtypeimagelocation( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
91     $dat->{'description'} = $itemtypes->{$itemtype}->{'description'};
92 }
93 my $shelflocations =GetKohaAuthorisedValues('items.location',$dat->{'frameworkcode'});
94 my $collections =  GetKohaAuthorisedValues('items.ccode',$dat->{'frameworkcode'} );
95
96 #coping with subscriptions
97 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
98 my @subscriptions       = GetSubscriptions( $dat->{title}, $dat->{issn}, $biblionumber );
99 my @subs;
100 $dat->{'serial'}=1 if $subscriptionsnumber;
101 foreach my $subscription (@subscriptions) {
102     my %cell;
103     $cell{subscriptionid}    = $subscription->{subscriptionid};
104     $cell{subscriptionnotes} = $subscription->{notes};
105     $cell{branchcode}        = $subscription->{branchcode};
106     $cell{hasalert}          = $subscription->{hasalert};
107     #get the three latest serials.
108     $cell{latestserials} =
109       GetLatestSerials( $subscription->{subscriptionid}, 3 );
110     push @subs, \%cell;
111 }
112
113 $dat->{'count'} = scalar(@items);
114
115 my $biblio_authorised_value_images = C4::Items::get_authorised_value_images( C4::Biblio::get_biblio_authorised_values( $biblionumber, $record ) );
116
117 my $norequests = 1;
118 my $branches = GetBranches();
119 my %itemfields;
120 for my $itm (@items) {
121     $norequests = 0
122        if ( (not $itm->{'wthdrawn'} )
123          && (not $itm->{'itemlost'} )
124          && ($itm->{'itemnotforloan'}<0 || not $itm->{'itemnotforloan'} )
125                  && (not $itemtypes->{$itm->{'itype'}}->{notforloan} )
126          && ($itm->{'itemnumber'} ) );
127
128     if ( defined $itm->{'publictype'} ) {
129         # I can't actually find any case in which this is defined. --amoore 2008-12-09
130         $itm->{ $itm->{'publictype'} } = 1;
131     }
132     $itm->{datedue}      = format_date($itm->{datedue});
133     $itm->{datelastseen} = format_date($itm->{datelastseen});
134
135     # get collection code description, too
136     if ( my $ccode = $itm->{'ccode'} ) {
137         $itm->{'ccode'} = $collections->{$ccode} if ( defined($collections) && exists( $collections->{$ccode} ) );
138     }
139     if ( defined $itm->{'location'} ) {
140         $itm->{'location_description'} = $shelflocations->{ $itm->{'location'} };
141     }
142     if (exists $itm->{itype} && defined($itm->{itype}) && exists $itemtypes->{ $itm->{itype} }) {
143         $itm->{'imageurl'}    = getitemtypeimagelocation( 'opac', $itemtypes->{ $itm->{itype} }->{'imageurl'} );
144         $itm->{'description'} = $itemtypes->{ $itm->{itype} }->{'description'};
145     }
146     foreach (qw(ccode enumchron copynumber itemnotes uri)) {
147         $itemfields{$_} = 1 if ($itm->{$_});
148     }
149
150      # walk through the item-level authorised values and populate some images
151      my $item_authorised_value_images = C4::Items::get_authorised_value_images( C4::Items::get_item_authorised_values( $itm->{'itemnumber'} ) );
152      # warn( Data::Dumper->Dump( [ $item_authorised_value_images ], [ 'item_authorised_value_images' ] ) );
153
154      if ( $itm->{'itemlost'} ) {
155          my $lostimageinfo = List::Util::first { $_->{'category'} eq 'LOST' } @$item_authorised_value_images;
156          $itm->{'lostimageurl'}   = $lostimageinfo->{ 'imageurl' };
157          $itm->{'lostimagelabel'} = $lostimageinfo->{ 'label' };
158      }
159
160      if( $itm->{'count_reserves'}){
161           if( $itm->{'count_reserves'} eq "Waiting"){ $itm->{'waiting'} = 1; }
162           if( $itm->{'count_reserves'} eq "Reserved"){ $itm->{'onhold'} = 1; }
163      }
164     
165      my ( $transfertwhen, $transfertfrom, $transfertto ) = GetTransfers($itm->{itemnumber});
166      if ( defined( $transfertwhen ) && $transfertwhen ne '' ) {
167         $itm->{transfertwhen} = format_date($transfertwhen);
168         $itm->{transfertfrom} = $branches->{$transfertfrom}{branchname};
169         $itm->{transfertto}   = $branches->{$transfertto}{branchname};
170      }
171 }
172
173 ## get notes and subjects from MARC record
174 my $dbh              = C4::Context->dbh;
175 my $marcflavour      = C4::Context->preference("marcflavour");
176 my $marcnotesarray   = GetMarcNotes   ($record,$marcflavour);
177 my $marcauthorsarray = GetMarcAuthors ($record,$marcflavour);
178 my $marcsubjctsarray = GetMarcSubjects($record,$marcflavour);
179 my $marcseriesarray  = GetMarcSeries  ($record,$marcflavour);
180 my $marcurlsarray    = GetMarcUrls    ($record,$marcflavour);
181 my $subtitle         = C4::Biblio::get_koha_field_from_marc('bibliosubtitle', 'subtitle', $record, '');
182
183     $template->param(
184                      MARCNOTES               => $marcnotesarray,
185                      MARCSUBJCTS             => $marcsubjctsarray,
186                      MARCAUTHORS             => $marcauthorsarray,
187                      MARCSERIES              => $marcseriesarray,
188                      MARCURLS                => $marcurlsarray,
189                      norequests              => $norequests,
190                      RequestOnOpac           => C4::Context->preference("RequestOnOpac"),
191                      itemdata_ccode          => $itemfields{ccode},
192                      itemdata_enumchron      => $itemfields{enumchron},
193                      itemdata_uri            => $itemfields{uri},
194                      itemdata_copynumber     => $itemfields{copynumber},
195                      itemdata_itemnotes          => $itemfields{itemnotes},
196                      authorised_value_images => $biblio_authorised_value_images,
197                      subtitle                => $subtitle,
198     );
199
200 foreach ( keys %{$dat} ) {
201     $template->param( "$_" => defined $dat->{$_} ? $dat->{$_} : '' );
202 }
203
204 # COinS format FIXME: for books Only
205 $template->param(
206     ocoins => GetCOinSBiblio($biblionumber),
207 );
208
209 my $reviews = getreviews( $biblionumber, 1 );
210 my $loggedincommenter;
211 foreach ( @$reviews ) {
212     my $borrowerData   = GetMember($_->{borrowernumber},'borrowernumber');
213     # setting some borrower info into this hash
214     $_->{title}     = $borrowerData->{'title'};
215     $_->{surname}   = $borrowerData->{'surname'};
216     $_->{firstname} = $borrowerData->{'firstname'};
217     $_->{userid}    = $borrowerData->{'userid'};
218     $_->{datereviewed} = format_date($_->{datereviewed});
219     if ($borrowerData->{'borrowernumber'} eq $borrowernumber) {
220                 $_->{your_comment} = 1;
221                 $loggedincommenter = 1;
222         }
223 }
224
225
226 if(C4::Context->preference("ISBD")) {
227         $template->param(ISBD => 1);
228 }
229
230 $template->param(
231     ITEM_RESULTS        => \@items,
232     subscriptionsnumber => $subscriptionsnumber,
233     biblionumber        => $biblionumber,
234     subscriptions       => \@subs,
235     subscriptionsnumber => $subscriptionsnumber,
236     reviews             => $reviews,
237     loggedincommenter   => $loggedincommenter
238 );
239
240 sub isbn_cleanup ($) {
241         my $isbn=shift;
242     ($isbn) = $isbn =~ /([\d-]*[X]*)/;
243     $isbn =~ s/-//g;
244         if (
245                 $isbn =~ /\b(\d{13})\b/ or
246                 $isbn =~ /\b(\d{10})\b/ or 
247                 $isbn =~ /\b(\d{9}X)\b/i
248         ) {
249                 return $1;
250         }
251         return undef;
252 }
253
254 # XISBN Stuff
255 my $xisbn=$dat->{'isbn'};
256 (my $aisbn) = $xisbn =~ /([\d-]*[X]*)/;
257 $aisbn =~ s/-//g;
258 $template->param(amazonisbn => $aisbn);         # FIXME: so it is OK if the ISBN = 'XXXXX' ?
259 my ($clean,$clean2);
260 # these might be overkill, but they are better than the regexp above.
261 if ($clean = isbn_cleanup($xisbn)){
262         $template->param(clean_isbn => $clean);
263 }
264
265 if (C4::Context->preference("OPACFRBRizeEditions")==1) {
266     eval {
267         $template->param(
268             xisbn => $xisbn,
269             XISBNS => get_xisbns($xisbn)
270         );
271     };
272     if ($@) { warn "XISBN Failed $@"; }
273 }
274 # Amazon.com Stuff
275 if ( C4::Context->preference("OPACAmazonEnabled") ) {
276     $template->param( AmazonTld => get_amazon_tld() );
277 }
278 if ( C4::Context->preference("OPACAmazonEnabled") && C4::Context->preference("OPACAmazonSimilarItems") ) {
279     my $similar_products_exist;
280     my $amazon_details = &get_amazon_details( $xisbn, $record, $marcflavour );
281     my $item_attributes = \%{$amazon_details->{Items}->{Item}->{ItemAttributes}};
282     my $customer_reviews = \@{$amazon_details->{Items}->{Item}->{CustomerReviews}->{Review}};
283     for my $one_review (@$customer_reviews) {
284         $one_review->{Date} = format_date($one_review->{Date});
285     }
286     my @similar_products;
287     for my $similar_product (@{$amazon_details->{Items}->{Item}->{SimilarProducts}->{SimilarProduct}}) {
288         # do we have any of these isbns in our collection?
289         my $similar_biblionumbers = get_biblionumber_from_isbn($similar_product->{ASIN});
290         # verify that there is at least one similar item
291         if (scalar(@$similar_biblionumbers)){
292             $similar_products_exist++ if ($similar_biblionumbers && $similar_biblionumbers->[0]);
293             push @similar_products, +{ similar_biblionumbers => $similar_biblionumbers, title => $similar_product->{Title}, ASIN => $similar_product->{ASIN}  };
294         }
295     }
296     my $editorial_reviews = \@{$amazon_details->{Items}->{Item}->{EditorialReviews}->{EditorialReview}};
297     my $average_rating = $amazon_details->{Items}->{Item}->{CustomerReviews}->{AverageRating} || 0;
298     $template->param( OPACAmazonSimilarItems => $similar_products_exist );
299     $template->param( amazon_average_rating => $average_rating * 20);
300     $template->param( AMAZON_CUSTOMER_REVIEWS    => $customer_reviews );
301     $template->param( AMAZON_SIMILAR_PRODUCTS => \@similar_products );
302     $template->param( AMAZON_EDITORIAL_REVIEWS    => $editorial_reviews );
303 }
304
305 my $syndetics_elements;
306
307 if ( C4::Context->preference("SyndeticsEnabled") ) {
308         eval {
309     $syndetics_elements = &get_syndetics_index($isbn,$upc,$oclc);
310         for my $element (values %$syndetics_elements) {
311                 $template->param("Syndetics$element"."Exists" => 1 );
312                 #warn "Exists: "."Syndetics$element"."Exists";
313         }
314     };
315     warn $@ if $@;
316 }
317
318 if ( C4::Context->preference("SyndeticsEnabled")
319         && C4::Context->preference("SyndeticsSummary")
320         && $syndetics_elements->{'SUMMARY'} =~ /SUMMARY/) {
321         eval {
322         my $syndetics_summary = &get_syndetics_summary($isbn,$upc,$oclc);
323         $template->param( SYNDETICS_SUMMARY => $syndetics_summary );
324         };
325         warn $@ if $@;
326
327 }
328
329 if ( C4::Context->preference("SyndeticsEnabled")
330         && C4::Context->preference("SyndeticsTOC")
331         && $syndetics_elements->{'TOC'} =~ /TOC/) {
332         eval {
333     my $syndetics_toc = &get_syndetics_toc($isbn,$upc,$oclc);
334     $template->param( SYNDETICS_TOC => $syndetics_toc );
335         };
336         warn $@ if $@;
337 }
338
339 if ( C4::Context->preference("SyndeticsEnabled")
340     && C4::Context->preference("SyndeticsExcerpt")
341     && $syndetics_elements->{'DBCHAPTER'} =~ /DBCHAPTER/ ) {
342     eval {
343     my $syndetics_excerpt = &get_syndetics_excerpt($isbn,$upc,$oclc);
344     $template->param( SYNDETICS_EXCERPT => $syndetics_excerpt );
345     };
346         warn $@ if $@;
347 }
348
349 if ( C4::Context->preference("SyndeticsEnabled")
350     && C4::Context->preference("SyndeticsReviews")) {
351     eval {
352     my $syndetics_reviews = &get_syndetics_reviews($isbn,$upc,$oclc,$syndetics_elements);
353     $template->param( SYNDETICS_REVIEWS => $syndetics_reviews );
354     };
355         warn $@ if $@;
356 }
357
358 if ( C4::Context->preference("SyndeticsEnabled")
359     && C4::Context->preference("SyndeticsAuthorNotes")
360         && $syndetics_elements->{'ANOTES'} =~ /ANOTES/ ) {
361     eval {
362     my $syndetics_anotes = &get_syndetics_anotes($isbn,$upc,$oclc);
363     $template->param( SYNDETICS_ANOTES => $syndetics_anotes );
364     };
365     warn $@ if $@;
366 }
367
368 # Babelthèque
369 if ( C4::Context->preference("Babeltheque") ) {
370     $template->param( 
371         Babeltheque => 1,
372     );
373 }
374
375 # Shelf Browser Stuff
376 if (C4::Context->preference("OPACShelfBrowser")) {
377     # pick the first itemnumber unless one was selected by the user
378     my $starting_itemnumber = $query->param('shelfbrowse_itemnumber'); # || $items[0]->{itemnumber};
379     $template->param( OpenOPACShelfBrowser => 1) if $starting_itemnumber;
380     # find the right cn_sort value for this item
381     my ($starting_cn_sort, $starting_homebranch, $starting_location);
382     my $sth_get_cn_sort = $dbh->prepare("SELECT cn_sort,homebranch,location from items where itemnumber=?");
383     $sth_get_cn_sort->execute($starting_itemnumber);
384     while (my $result = $sth_get_cn_sort->fetchrow_hashref()) {
385         $starting_cn_sort = $result->{'cn_sort'};
386         $starting_homebranch->{code} = $result->{'homebranch'};
387         $starting_homebranch->{description} = $branches->{$result->{'homebranch'}}{branchname};
388         $starting_location->{code} = $result->{'location'};
389         $starting_location->{description} = GetAuthorisedValueDesc('','',   $result->{'location'} ,'','','LOC');
390     
391     }
392     
393     ## List of Previous Items
394     # order by cn_sort, which should include everything we need for ordering purposes (though not
395     # for limits, those need to be handled separately
396     my $sth_shelfbrowse_previous;
397     if (defined $starting_location->{code}) {
398       $sth_shelfbrowse_previous = $dbh->prepare("
399         SELECT *
400         FROM items
401         WHERE
402             ((cn_sort = ? AND itemnumber < ?) OR cn_sort < ?) AND
403             homebranch = ? AND location = ?
404         ORDER BY cn_sort DESC, itemnumber LIMIT 3
405         ");
406       $sth_shelfbrowse_previous->execute($starting_cn_sort, $starting_itemnumber, $starting_cn_sort, $starting_homebranch->{code}, $starting_location->{code});
407     } else {
408       $sth_shelfbrowse_previous = $dbh->prepare("
409         SELECT *
410         FROM items
411         WHERE
412             ((cn_sort = ? AND itemnumber < ?) OR cn_sort < ?) AND
413             homebranch = ?
414         ORDER BY cn_sort DESC, itemnumber LIMIT 3
415         ");
416       $sth_shelfbrowse_previous->execute($starting_cn_sort, $starting_itemnumber, $starting_cn_sort, $starting_homebranch->{code});
417     }
418     my @previous_items;
419     while (my $this_item = $sth_shelfbrowse_previous->fetchrow_hashref()) {
420         my $sth_get_biblio = $dbh->prepare("SELECT biblio.*,biblioitems.isbn AS isbn FROM biblio LEFT JOIN biblioitems ON biblio.biblionumber=biblioitems.biblionumber WHERE biblio.biblionumber=?");
421         $sth_get_biblio->execute($this_item->{biblionumber});
422         while (my $this_biblio = $sth_get_biblio->fetchrow_hashref()) {
423             $this_item->{'title'} = $this_biblio->{'title'};
424             if ($clean2 = isbn_cleanup($this_biblio->{'isbn'})) {
425                 $this_item->{'isbn'} = $clean2;
426             } else { 
427                 $this_item->{'isbn'} = $this_biblio->{'isbn'};
428             }
429         }
430         unshift @previous_items, $this_item;
431     }
432     
433     ## List of Next Items; this also intentionally catches the current item
434     my $sth_shelfbrowse_next;
435     if (defined $starting_location->{code}) {
436       $sth_shelfbrowse_next = $dbh->prepare("
437         SELECT *
438         FROM items
439         WHERE
440             ((cn_sort = ? AND itemnumber >= ?) OR cn_sort > ?) AND
441             homebranch = ? AND location = ?
442         ORDER BY cn_sort, itemnumber LIMIT 3
443       $sth_shelfbrowse_next->execute($starting_cn_sort, $starting_itemnumber, $starting_cn_sort, $starting_homebranch->{code}, $starting_location->{code});
444     } else {
445       $sth_shelfbrowse_next = $dbh->prepare("
446         SELECT *
447         FROM items
448         WHERE
449             ((cn_sort = ? AND itemnumber >= ?) OR cn_sort > ?) AND
450             homebranch = ?
451         ORDER BY cn_sort, itemnumber LIMIT 3
452         ");
453       $sth_shelfbrowse_next->execute($starting_cn_sort, $starting_itemnumber, $starting_cn_sort, $starting_homebranch->{code});
454     }
455     my @next_items;
456     while (my $this_item = $sth_shelfbrowse_next->fetchrow_hashref()) {
457         my $sth_get_biblio = $dbh->prepare("SELECT biblio.*,biblioitems.isbn AS isbn FROM biblio LEFT JOIN biblioitems ON biblio.biblionumber=biblioitems.biblionumber WHERE biblio.biblionumber=?");
458         $sth_get_biblio->execute($this_item->{biblionumber});
459         while (my $this_biblio = $sth_get_biblio->fetchrow_hashref()) {
460             $this_item->{'title'} = $this_biblio->{'title'};
461             if ($clean2 = isbn_cleanup($this_biblio->{'isbn'})) {
462                 $this_item->{'isbn'} = $clean2;
463             } else { 
464                 $this_item->{'isbn'} = $this_biblio->{'isbn'};
465             }
466         }
467         push @next_items, $this_item;
468     }
469
470
471     # alas, these won't auto-vivify, see http://www.perlmonks.org/?node_id=508481
472     my $shelfbrowser_next_itemnumber = $next_items[-1]->{itemnumber} if @next_items;
473     my $shelfbrowser_next_biblionumber = $next_items[-1]->{biblionumber} if @next_items;
474     
475     $template->param(
476         starting_homebranch => $starting_homebranch->{description},
477         starting_location => $starting_location->{description},
478         starting_itemnumber => $starting_itemnumber,
479         shelfbrowser_prev_itemnumber => (@previous_items ? $previous_items[0]->{itemnumber} : 0),
480         shelfbrowser_next_itemnumber => $shelfbrowser_next_itemnumber,
481         shelfbrowser_prev_biblionumber => (@previous_items ? $previous_items[0]->{biblionumber} : 0),
482         shelfbrowser_next_biblionumber => $shelfbrowser_next_biblionumber,
483         PREVIOUS_SHELF_BROWSE => \@previous_items,
484         NEXT_SHELF_BROWSE => \@next_items,
485     );
486 }
487
488 if (C4::Context->preference("BakerTaylorEnabled")) {
489         $template->param(
490                 BakerTaylorEnabled  => 1,
491                 BakerTaylorImageURL => &image_url(),
492                 BakerTaylorLinkURL  => &link_url(),
493                 BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'),
494         );
495         my ($bt_user, $bt_pass);
496         if ($clean and
497                 $bt_user = C4::Context->preference('BakerTaylorUsername') and
498                 $bt_pass = C4::Context->preference('BakerTaylorPassword')    )
499         {
500                 $template->param(
501                 BakerTaylorContentURL   =>
502                 sprintf("http://contentcafe2.btol.com/ContentCafeClient/ContentCafe.aspx?UserID=%s&Password=%s&ItemKey=%s&Options=Y",
503                                 $bt_user,$bt_pass,$clean)
504                 );
505         }
506 }
507
508 my $tag_quantity;
509 if (C4::Context->preference('TagsEnabled') and $tag_quantity = C4::Context->preference('TagsShowOnDetail')) {
510         $template->param(
511                 TagsEnabled => 1,
512                 TagsShowOnDetail => $tag_quantity,
513                 TagsInputOnDetail => C4::Context->preference('TagsInputOnDetail')
514         );
515         $template->param(TagLoop => get_tags({biblionumber=>$biblionumber, approved=>1,
516                                                                 'sort'=>'-weight', limit=>$tag_quantity}));
517 }
518
519 output_html_with_http_headers $query, $cookie, $template->output;