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:
a048f77
)
wrapper für GenericTranslations richtig aufrufen
author
Jan Büren
<jan@kivitendo-premium.de>
Fri, 18 Nov 2016 12:38:14 +0000
(13:38 +0100)
committer
Jan Büren
<jan@kivitendo-premium.de>
Fri, 18 Nov 2016 12:38:14 +0000
(13:38 +0100)
Parameter werden in GenericTranslations _save geprüft mit einem
Standard shift $self, entsprechend den Aufruf der internen Funktion gefixt
SL/GenericTranslations.pm
patch
|
blob
|
history
diff --git
a/SL/GenericTranslations.pm
b/SL/GenericTranslations.pm
index
4f33ab4
..
263c827
100644
(file)
--- a/
SL/GenericTranslations.pm
+++ b/
SL/GenericTranslations.pm
@@
-94,7
+94,7
@@
sub save {
my ($self, %params) = @_;
$main::lxdebug->enter_sub();
- my $rc = SL::DB->client->with_transaction(\&_save, %params);
+ my $rc = SL::DB->client->with_transaction(\&_save,
$self,
%params);
$::lxdebug->leave_sub;
return $rc;