From 732533d0b6f7610403e3b91c30387e5ee9181b06 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Wed, 7 Apr 2010 11:54:15 +0200 Subject: [PATCH] Eine mit my deklarierte Variable nicht noch mit our deklarieren Ansonsten handelt es sich wegen Scopings um zwei verschiedene Variablen. --- bin/mozilla/oe.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/mozilla/oe.pl b/bin/mozilla/oe.pl index 1532bf798..ad25e835b 100644 --- a/bin/mozilla/oe.pl +++ b/bin/mozilla/oe.pl @@ -300,8 +300,9 @@ sub form_header { check_oe_access(); - # Container for template variables. Unfortunately this has to be visible in form_footer too, so not my. - our %TMPL_VAR = (); + # Container for template variables. Unfortunately this has to be + # visible in form_footer too, so my at package level and not here. + %TMPL_VAR = (); $form->{defaultcurrency} = $form->get_default_currency(\%myconfig); -- 2.20.1