From 7f387728b8d32155fe7ec99d1789cb81f106a32c Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Mon, 17 Mar 2014 16:13:37 +0100 Subject: [PATCH] =?utf8?q?CustomVariable=20RDBO:=20falsches=20Dispatching?= =?utf8?q?=20f=C3=BCr=20Boolean-Variablen=20gefixt?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- SL/DB/CustomVariable.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SL/DB/CustomVariable.pm b/SL/DB/CustomVariable.pm index 1d8b5c911..dd32ef9cb 100644 --- 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 'boolean'; + goto &bool_value if $type eq 'bool'; goto ×tamp_value if $type eq 'timestamp'; goto &number_value if $type eq 'number'; -- 2.20.1