CustomVariable RDBO: falsches Dispatching für Boolean-Variablen gefixt
authorMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 17 Mar 2014 15:13:37 +0000 (16:13 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 17 Mar 2014 15:52:11 +0000 (16:52 +0100)
SL/DB/CustomVariable.pm

index 1d8b5c9..dd32ef9 100644 (file)
@@ -15,7 +15,7 @@ sub value {
   my $self = $_[0];
   my $type = $self->config->type;
 
-  goto &bool_value      if $type eq 'boolean';
+  goto &bool_value      if $type eq 'bool';
   goto &timestamp_value if $type eq 'timestamp';
   goto &number_value    if $type eq 'number';