Skip to content
Snippets Groups Projects
Commit 05cbb758 authored by aydreeihn's avatar aydreeihn
Browse files

Issue: Edit Task Fields

This commit fixes an issue where you were unable to edit custom fields if they were added to a task form after a task had been created.
parent 1c987179
No related branches found
No related tags found
No related merge requests found
......@@ -29,13 +29,15 @@ if ($info['error']) {
<div>
<?php
if ($forms) {
foreach ($forms as $form)
foreach ($forms as $form) {
$form->addMissingFields();
echo $form->getForm(false, array('mode' => 'edit'))->asTable(
__('Task Information'),
array(
'draft-namespace' => $namespace,
)
);
}
}
?>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment