From c7a50a7cbca3cd7cef4dd4ffd0600b7ffef6d4d7 Mon Sep 17 00:00:00 2001 From: Andrew Bauer Date: Sat, 9 May 2015 12:13:38 -0500 Subject: [PATCH] Replace newlines with a space --- 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 2203570cd..233d61948 100644 --- a/scripts/ZoneMinder/lib/ZoneMinder/ConfigData.pm.in +++ b/scripts/ZoneMinder/lib/ZoneMinder/ConfigData.pm.in @@ -173,8 +173,8 @@ our %types = ); sub qqq { ## Un-pad paragraph of text. - local $_=shift; - s{\n?^\s*}{}mg; + local $_ = shift; + s{\n?^\s*}{ }mg; return $_; }