diff --git a/Theme/Backend/surveys-create.tpl.php b/Theme/Backend/surveys-create.tpl.php
index 1cbf432..b5ad6f5 100755
--- a/Theme/Backend/surveys-create.tpl.php
+++ b/Theme/Backend/surveys-create.tpl.php
@@ -102,9 +102,9 @@ echo $this->data['nav']->render(); ?>
if ($element->type === SurveyElementType::HEADLINE) {
echo '
' . $this->printHtml($element->getL11n()->text) . '
';
- echo !empty($element->getL11n()->description)
- ? '' . $element->getL11n()->description . '
'
- : '';
+ echo empty($element->getL11n()->description)
+ ? ''
+ : '' . $element->getL11n()->description . '
';
} elseif ($element->type === SurveyElementType::CHECKBOX
|| $element->type === SurveyElementType::RADIO
|| $element->type === SurveyElementType::DROPDOWN
@@ -118,9 +118,9 @@ echo $this->data['nav']->render(); ?>
// Question/Text section
echo '';
echo '
' . $this->printHtml($element->getL11n()->text) . '
';
- echo !empty($element->getL11n()->description)
- ? '
' . $element->getL11n()->description . ''
- : '';
+ echo empty($element->getL11n()->description)
+ ? ''
+ : '
' . $element->getL11n()->description . '';
echo '
';
// Value section