From 2a2d667afbaaf9d6d12246743e32fd93d621faf3 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Fri, 26 May 2017 13:27:06 -0400 Subject: [PATCH] remove some quotes --- scripts/ZoneMinder/lib/ZoneMinder/ConfigData.pm.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ZoneMinder/lib/ZoneMinder/ConfigData.pm.in b/scripts/ZoneMinder/lib/ZoneMinder/ConfigData.pm.in index e6d93c6e8..849f20ab6 100644 --- a/scripts/ZoneMinder/lib/ZoneMinder/ConfigData.pm.in +++ b/scripts/ZoneMinder/lib/ZoneMinder/ConfigData.pm.in @@ -41,7 +41,7 @@ our @ISA = qw(Exporter ZoneMinder::Base); # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK # will save memory. our %EXPORT_TAGS = ( - 'data' => [ qw( + data => [ qw( %types @options %options_hash @@ -49,7 +49,7 @@ our %EXPORT_TAGS = ( ); push( @{$EXPORT_TAGS{all}}, @{$EXPORT_TAGS{$_}} ) foreach keys %EXPORT_TAGS; -our @EXPORT_OK = ( @{ $EXPORT_TAGS{'data'} } ); +our @EXPORT_OK = ( @{ $EXPORT_TAGS{data} } ); our @EXPORT = qw();