Skip to content

Commit

Permalink
Add table option when creating fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Hubert Prein committed Jan 12, 2016
1 parent 030e8a9 commit ffdeed1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions AmFormsPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ public function getName()
*/
public function getVersion()
{
return '1.3.2';
return '1.3.3';
}

/**
* @return string
*/
public function getSchemaVersion()
{
return '1.3.2';
return '1.3.3';
}

/**
Expand Down
3 changes: 2 additions & 1 deletion services/AmForms_FieldsService.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ public function getUnsupportedFieldTypes()
return array(
'Entries',
'Lightswitch',
'Matrix'
'Matrix',
'Table',
);
}
}
2 changes: 1 addition & 1 deletion templates/_display/templates/email.twig
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
{% else -%}
<ul style="margin-left:0;">
{% for item in value %}
<li>{{ item }}</li>
<li>{{ (item is iterable ? item|first : item) }}</li>
{% endfor %}
</ul>
{% endif %}
Expand Down

0 comments on commit ffdeed1

Please sign in to comment.