diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-16 02:04:44 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-16 02:04:44 +0000 |
commit | 6061fa9781205b4de2a5cc69a565036e5fb2bf97 (patch) | |
tree | fddd45aac58609796d174121e922a7acdaa9106c /modules/node/node.module | |
parent | 5faaa376aa8c0bb5b1a17bca8f506f8431f795b0 (diff) | |
download | brdo-6061fa9781205b4de2a5cc69a565036e5fb2bf97.tar.gz brdo-6061fa9781205b4de2a5cc69a565036e5fb2bf97.tar.bz2 |
#565480 by plach and peximo: TF #2: Multilingual field handling. Integration between field API and locale module + translatable node bodies.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index db50ea97a..0d7940a5e 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -534,6 +534,7 @@ function node_configure_fields($type) { $field = array( 'field_name' => 'body', 'type' => 'text_with_summary', + 'translatable' => TRUE, ); $field = field_create_field($field); } |