Revision 732533d0
Von Moritz Bunkus vor mehr als 14 Jahren hinzugefügt
bin/mozilla/oe.pl | ||
---|---|---|
300 | 300 |
|
301 | 301 |
check_oe_access(); |
302 | 302 |
|
303 |
# Container for template variables. Unfortunately this has to be visible in form_footer too, so not my. |
|
304 |
our %TMPL_VAR = (); |
|
303 |
# Container for template variables. Unfortunately this has to be |
|
304 |
# visible in form_footer too, so my at package level and not here. |
|
305 |
%TMPL_VAR = (); |
|
305 | 306 |
|
306 | 307 |
$form->{defaultcurrency} = $form->get_default_currency(\%myconfig); |
307 | 308 |
|
Auch abrufbar als: Unified diff
Eine mit my deklarierte Variable nicht noch mit our deklarieren
Ansonsten handelt es sich wegen Scopings um zwei verschiedene
Variablen.