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:
29d544f
)
Syntax-Fehler in SL/Form.pm
author
Niclas Zimmermann
<niclas@kivitendo-premium.de>
Fri, 14 Jun 2013 09:26:25 +0000
(11:26 +0200)
committer
Niclas Zimmermann
<niclas@kivitendo-premium.de>
Fri, 14 Jun 2013 09:26:25 +0000
(11:26 +0200)
Hier gab es einen kleinen Syntax-Fehler, der sich allerdings nicht
auf die Funktionalität ausgewirkt hat.
SL/Form.pm
patch
|
blob
|
history
diff --git
a/SL/Form.pm
b/SL/Form.pm
index
07702fb
..
81727ed
100644
(file)
--- a/
SL/Form.pm
+++ b/
SL/Form.pm
@@
-1645,7
+1645,6
@@
sub get_all_currencies {
my $self = shift;
my $myconfig = shift || \%::myconfig;
my $dbh = $self->get_standard_dbh($myconfig);
- my @currencies =();
my $query = qq|SELECT name FROM currencies|;
my @currencies = map { $_->{name} } selectall_hashref_query($self, $dbh, $query);