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:
aff48c9
)
CustomVariable RDBO: falsches Dispatching für Boolean-Variablen gefixt
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Mon, 17 Mar 2014 15:13:37 +0000
(16:13 +0100)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Mon, 17 Mar 2014 15:52:11 +0000
(16:52 +0100)
SL/DB/CustomVariable.pm
patch
|
blob
|
history
diff --git
a/SL/DB/CustomVariable.pm
b/SL/DB/CustomVariable.pm
index
1d8b5c9
..
dd32ef9
100644
(file)
--- a/
SL/DB/CustomVariable.pm
+++ b/
SL/DB/CustomVariable.pm
@@
-15,7
+15,7
@@
sub value {
my $self = $_[0];
my $type = $self->config->type;
- goto &bool_value if $type eq 'bool
ean
';
+ goto &bool_value if $type eq 'bool';
goto ×tamp_value if $type eq 'timestamp';
goto &number_value if $type eq 'number';