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:
116f40a
)
@values wurde in der falschen Reihenfolge befüllt. Fix für Bug 654.
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Mon, 21 May 2007 12:18:07 +0000
(12:18 +0000)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Mon, 21 May 2007 12:18:07 +0000
(12:18 +0000)
SL/IS.pm
patch
|
blob
|
history
diff --git
a/SL/IS.pm
b/SL/IS.pm
index
c37b1aa
..
6286939
100644
(file)
--- a/
SL/IS.pm
+++ b/
SL/IS.pm
@@
-421,7
+421,7
@@
sub customer_details {
# get contact id, set it if nessessary
$form->{cp_id} *= 1;
- my @values;
+ my @values
= (conv_i($form->{customer_id}))
;
my $where = "";
if ($form->{cp_id}) {
@@
-438,7
+438,6
@@
sub customer_details {
WHERE (ct.id = ?) $where
ORDER BY cp.cp_id
LIMIT 1|;
- push(@values, conv_i($form->{customer_id}));
my $ref = selectfirst_hashref_query($form, $dbh, $query, @values);
# remove id and taxincluded before copy back