diff --git a/lib/Form/Renderer.php b/lib/Form/Renderer.php
index c95fe4ec78..e137b7ddeb 100644
--- a/lib/Form/Renderer.php
+++ b/lib/Form/Renderer.php
@@ -41,7 +41,7 @@ class Renderer {
static function renderBlocks($blocks = array(), $honeypot_enabled = true) {
// add honeypot for spambots
$html = ($honeypot_enabled) ?
- '' :
+ '' :
'';
foreach($blocks as $key => $block) {
$html .= static::renderBlock($block) . PHP_EOL;