From f44e05062d58d2351e27fab42a393d508be35643 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Thu, 24 May 2007 07:33:40 +0000 Subject: [PATCH] $options ist eine Hashreferenz, kein Hash. --- bin/mozilla/io.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/mozilla/io.pl b/bin/mozilla/io.pl index 7f8f65a54..d696dd200 100644 --- a/bin/mozilla/io.pl +++ b/bin/mozilla/io.pl @@ -1374,7 +1374,7 @@ sub print_options { opthash("screen", $form->{OP}{screen}, $locale->text('Screen')), (scalar @{ $form->{printers} } && $latex_templates) ? opthash("printer", $form->{OP}{printer}, $locale->text('Printer')) : undef, - ($latex_templates && !$options{no_queue}) ? + ($latex_templates && !$options->{no_queue}) ? opthash("queue", $form->{OP}{queue}, $locale->text('Queue')) : undef if ($form->{media} ne 'email'); @@ -1413,7 +1413,7 @@ sub print_options { my $print_options = $form->parse_html_template("generic/print_options", { SELECTS => \@SELECTS, %template_vars } ); - if ($options{inline}) { + if ($options->{inline}) { $lxdebug->leave_sub() and return $print_options; } else { print $print_options; $lxdebug->leave_sub(); -- 2.20.1