diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-04-22 19:06:34 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-04-22 19:06:34 +0000 |
commit | a75480a0c8fe0256ee6aca334e474fc86d9ddd6d (patch) | |
tree | 573348f56ff0847c361412233ab1fb228e902384 /modules/field/field.api.php | |
parent | 6d9fb62fcfdac43ef5ec32ba3fc288dafe5b79b6 (diff) | |
download | brdo-a75480a0c8fe0256ee6aca334e474fc86d9ddd6d.tar.gz brdo-a75480a0c8fe0256ee6aca334e474fc86d9ddd6d.tar.bz2 |
- Patch #739470 by yched, fago: hook_field_update_instance() invocation is missing.
Diffstat (limited to 'modules/field/field.api.php')
-rw-r--r-- | modules/field/field.api.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/field/field.api.php b/modules/field/field.api.php index 8982d20fb..95f436c43 100644 --- a/modules/field/field.api.php +++ b/modules/field/field.api.php @@ -1600,12 +1600,12 @@ function hook_field_delete_field($field) { * This hook is invoked after the instance record is saved and so it cannot * modify the instance itself. * - * TODO: Not implemented. - * * @param $instance - * The instance just updated. + * The instance as it is post-update. + * @param $prior_$instance + * The instance as it was pre-update. */ -function hook_field_update_instance($instance) { +function hook_field_update_instance($instance, $prior_instance) { } /** |