projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5cb95a5
)
Eine mit my deklarierte Variable nicht noch mit our deklarieren
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Wed, 7 Apr 2010 09:54:15 +0000
(11:54 +0200)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Wed, 7 Apr 2010 09:54:15 +0000
(11:54 +0200)
Ansonsten handelt es sich wegen Scopings um zwei verschiedene
Variablen.
bin/mozilla/oe.pl
patch
|
blob
|
history
diff --git
a/bin/mozilla/oe.pl
b/bin/mozilla/oe.pl
index
1532bf7
..
ad25e83
100644
(file)
--- 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);