Issue #1220602 by catch: Fixed Call to undefined function _update_7000_field_read_fields() during Forum update 7003.
parent
eb82ee8611
commit
73da458f28
|
@ -238,6 +238,21 @@ function forum_schema() {
|
|||
return $schema;
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements hook_update_dependencies().
|
||||
*/
|
||||
function forum_update_dependencies() {
|
||||
$dependencies['forum'][7003] = array(
|
||||
// Forum update 7003 uses field API update functions, so must run after
|
||||
// Field API has been enabled.
|
||||
'system' => 7020,
|
||||
// Forum update 7003 relies on updated taxonomy module schema. Ensure it
|
||||
// runs after all taxonomy updates.
|
||||
'taxonomy' => 7010,
|
||||
);
|
||||
return $dependencies;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add new index to forum table.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue