From 3e6f041a0bf3405a31e51e923125492075b2b557 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Tue, 3 Mar 2015 10:40:05 +0100 Subject: [PATCH] Node: add newlines to HTML, not too much --- library/Businessprocess/Node.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Businessprocess/Node.php b/library/Businessprocess/Node.php index 6458db8..f8fb075 100644 --- a/library/Businessprocess/Node.php +++ b/library/Businessprocess/Node.php @@ -314,7 +314,7 @@ abstract class Node foreach ($this->getChildren() as $name => $child) { $html .= '' . $child->renderHtml($view, $id . '-') . ''; } - $html .= ''; + $html .= "\n"; return $html; }