From: Moritz Bunkus Date: Wed, 7 Apr 2010 09:54:15 +0000 (+0200) Subject: Eine mit my deklarierte Variable nicht noch mit our deklarieren X-Git-Tag: release-2.6.2beta1~342^2~14^2~2 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=732533d0b6f7610403e3b91c30387e5ee9181b06;p=kivitendo-erp.git Eine mit my deklarierte Variable nicht noch mit our deklarieren Ansonsten handelt es sich wegen Scopings um zwei verschiedene Variablen. --- 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);