Browse Source

quell 'non-initialized variable defaulttab' warning

Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
3.2.x
Galen Charlton 14 years ago
parent
commit
a6d6be8958
  1. 3
      opac/opac-detail.pl

3
opac/opac-detail.pl

@ -596,7 +596,7 @@ if (my $search_for_title = C4::Context->preference('OPACSearchForTitleIn')){
# We try to select the best default tab to show, according to what
# the user wants, and what's available for display
my $defaulttab;
my $defaulttab = '';
switch (C4::Context->preference('opacSerialDefaultTab')) {
# If the user wants subscriptions by default
@ -636,5 +636,4 @@ switch (C4::Context->preference('opacSerialDefaultTab')) {
$template->param('defaulttab' => $defaulttab);
output_html_with_http_headers $query, $cookie, $template->output;

Loading…
Cancel
Save