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:
aa8ce6f
)
sub _get_currencies an currencies angepasst, da diese mit : getrennt in der Tabelle...
author
Thomas Kasulke
<t.kasulke@linet-services.de>
Fri, 27 Apr 2007 11:53:15 +0000
(11:53 +0000)
committer
Thomas Kasulke
<t.kasulke@linet-services.de>
Fri, 27 Apr 2007 11:53:15 +0000
(11:53 +0000)
SL/Form.pm
patch
|
blob
|
history
diff --git
a/SL/Form.pm
b/SL/Form.pm
index
65fdace
..
caace43
100644
(file)
--- a/
SL/Form.pm
+++ b/
SL/Form.pm
@@
-1596,8
+1596,8
@@
$main::lxdebug->enter_sub();
$key = "all_currencies" unless ($key);
my $query = qq|SELECT curr AS currency FROM defaults|;
-
- $self->{$key} =
selectall_hashref_query($self, $dbh, $query)
;
+
+ $self->{$key} =
[split(/\:/ , selectfirst_hashref_query($self, $dbh, $query)->{currency})]
;
$main::lxdebug->leave_sub();
}