diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-10-25 00:09:12 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-10-25 00:09:12 +0000 |
commit | 738ef0e6ebe7c5a65f170b1f0dd75c40e7f296b4 (patch) | |
tree | 8dfb9328bf61f049d36b251fea1d349686ae718b /modules/field | |
parent | bcc0741b67e83ad5a5da49e145fb3035b435584e (diff) | |
download | brdo-738ef0e6ebe7c5a65f170b1f0dd75c40e7f296b4.tar.gz brdo-738ef0e6ebe7c5a65f170b1f0dd75c40e7f296b4.tar.bz2 |
- Patch #948116 by amateescu: field_update_instance() doxygen is broken.
Diffstat (limited to 'modules/field')
-rw-r--r-- | modules/field/field.crud.inc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/field/field.crud.inc b/modules/field/field.crud.inc index ed4452c46..21e000cf2 100644 --- a/modules/field/field.crud.inc +++ b/modules/field/field.crud.inc @@ -700,13 +700,16 @@ function field_create_instance($instance) { * @param $instance * An associative array representing an instance structure. The required * keys and values are: - * field_name: The name of an existing field. - * bundle: The bundle this field belongs to. + * - entity_type: The type of the entity the field is attached to. + * - bundle: The bundle this field belongs to. + * - field_name: The name of an existing field. * Read-only_id properties are assigned automatically. Any other * properties specified in $instance overwrite the existing values for * the instance. + * * @throw * FieldException + * * @see field_create_instance() */ function field_update_instance($instance) { |