SL::DB::CustomVariable: value_as_text() für Typ 'bool' gefixt
authorMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 17 Feb 2015 12:37:54 +0000 (13:37 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 17 Feb 2015 14:30:39 +0000 (15:30 +0100)
Der Typ heißt 'bool' und nicht 'boolean'.

SL/DB/CustomVariable.pm

index fb990b0..7f18f6a 100644 (file)
@@ -89,7 +89,7 @@ sub value_as_text {
 
   die 'not an accessor' if @_ > 1;
 
-  if ($type eq 'boolean') {
+  if ($type eq 'bool') {
     return $self->bool_value ? $::locale->text('Yes') : $::locale->text('No');
   } elsif ($type eq 'timestamp') {
     return $::locale->reformat_date( { dateformat => 'yy-mm-dd' }, $self->timestamp_value->ymd, $::myconfig{dateformat});