fix tagged_form_field

This commit is contained in:
Etienne Roudeix
2013-10-23 18:00:04 +02:00
parent cf67a0478e
commit a631a4e174
2 changed files with 3 additions and 30 deletions

View File

@@ -255,8 +255,6 @@ $this->assignFieldValues($template, $formFieldView->vars["full_name"], $fieldVar
self::$taggedFieldsStack[self::$taggedFieldsStackPosition]['view']->setRendered();
$repeat = true;
} else {
$content = null;
}
if (! $repeat) {
@@ -264,7 +262,9 @@ $this->assignFieldValues($template, $formFieldView->vars["full_name"], $fieldVar
self::$taggedFieldsStackPosition = null;
}
return $content;
if(null !== $content) {
return $content;
}
}
public function renderHiddenFormField($params, \Smarty_Internal_Template $template)