Revision 7f387728
Von Moritz Bunkus vor mehr als 10 Jahren hinzugefügt
SL/DB/CustomVariable.pm | ||
---|---|---|
15 | 15 |
my $self = $_[0]; |
16 | 16 |
my $type = $self->config->type; |
17 | 17 |
|
18 |
goto &bool_value if $type eq 'boolean';
|
|
18 |
goto &bool_value if $type eq 'bool'; |
|
19 | 19 |
goto ×tamp_value if $type eq 'timestamp'; |
20 | 20 |
goto &number_value if $type eq 'number'; |
21 | 21 |
|
Auch abrufbar als: Unified diff
CustomVariable RDBO: falsches Dispatching für Boolean-Variablen gefixt