Skip to content

Commit

Permalink
[#2558] prevent total crash and burn on new dataset save
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes committed Jun 20, 2012
1 parent 741881c commit c841403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/templates/package/snippets/package_basic_fields.html
Expand Up @@ -6,7 +6,7 @@

{{ form.markdown('notes', id='field-notes', label=_('Description'), placeholder=_('eg. Some useful notes about the data'), value=data.notes, error=errors.notes) }}

{{ form.input('tags', id='field-tags', label=_('Tags'), placeholder=_('eg. economy, spending, government'), value=data.tags, error=errors.tags, classes=['control-full']) }}
{{ form.input('tag_string', id='field-tags', label=_('Tags'), placeholder=_('eg. economy, spending, government'), value=data.tag_string, error=errors.tags, classes=['control-full']) }}

<div class="control-group">
{% set error = errors.license_id %}
Expand Down

0 comments on commit c841403

Please sign in to comment.