From a63ac99ac5f8486bc992b8588b8bab7770d608db Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Mon, 2 Mar 2015 18:21:50 +0100 Subject: [PATCH] BusinessProcess: config should end with a newline --- library/Businessprocess/BusinessProcess.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Businessprocess/BusinessProcess.php b/library/Businessprocess/BusinessProcess.php index 20b9d13..ae1962b 100644 --- a/library/Businessprocess/BusinessProcess.php +++ b/library/Businessprocess/BusinessProcess.php @@ -411,7 +411,7 @@ class BusinessProcess foreach ($this->getChildren() as $child) { $conf .= $child->toLegacyConfigString(); } - return $conf; + return $conf . "\n"; } public function renderHtml($view)