Node: add newlines to HTML, not too much

This commit is contained in:
Thomas Gelf 2015-03-03 10:40:05 +01:00
parent 39b08235a5
commit 3e6f041a0b

View file

@ -314,7 +314,7 @@ abstract class Node
foreach ($this->getChildren() as $name => $child) {
$html .= '<tr><td>' . $child->renderHtml($view, $id . '-') . '</td></tr>';
}
$html .= '</tbody></table>';
$html .= "</tbody></table>\n";
return $html;
}