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:
264b38c
)
save_customer und save_vendor hatten die falschen return-Werte
author
Philip Reetz
<p.reetz@linet-services.de>
Thu, 26 Jan 2006 10:48:08 +0000
(10:48 +0000)
committer
Philip Reetz
<p.reetz@linet-services.de>
Thu, 26 Jan 2006 10:48:08 +0000
(10:48 +0000)
SL/CT.pm
patch
|
blob
|
history
diff --git
a/SL/CT.pm
b/SL/CT.pm
index
a7b0a2f
..
308a36e
100644
(file)
--- a/
SL/CT.pm
+++ b/
SL/CT.pm
@@
-355,9
+355,10
@@
sub save_customer {
# add shipto
$form->add_shipto($dbh, $form->{id});
- $dbh->disconnect;
+ $
rc = $
dbh->disconnect;
$main::lxdebug->leave_sub();
+ return $rc;
}
sub save_vendor {
@@
-488,9
+489,10
@@
sub save_vendor {
# add shipto
$form->add_shipto($dbh, $form->{id});
- $dbh->disconnect;
+ $
rc = $
dbh->disconnect;
$main::lxdebug->leave_sub();
+ return $rc;
}
sub delete {