]> wagnertech.de Git - mfinanz.git/blobdiff - SL/DB/CustomVariable.pm
CustomVariable RDBO: falsches Dispatching für Boolean-Variablen gefixt
[mfinanz.git] / SL / DB / CustomVariable.pm
index 1d8b5c9113221e4caf2581caace9a874b1334a47..dd32ef9cbc404faf37136c911a9a88ba6efba4c0 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';