Bug 23049: Drop type lookup as it's now a foreign key
[srvgit] / opac / opac-addbybiblionumber.pl
index ddc6778..67b88f8 100755 (executable)
@@ -148,6 +148,10 @@ if ($authorized) {
             @biblios,
             {   biblionumber => $biblionumber,
                 title        => $biblio->title,
+                subtitle     => $biblio->subtitle,
+                medium       => $biblio->medium,
+                part_number  => $biblio->part_number,
+                part_name    => $biblio->part_name,
                 author       => $biblio->author,
             }
         );
@@ -164,4 +168,4 @@ if ($authorized) {
     );
 }
 $template->param( authorized => $authorized, errcode => $errcode, );
-output_html_with_http_headers $query, $cookie, $template->output;
+output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };