- Issue created by @bhanu951
- Merge request !57Issue #3507941 by bhanu951: Updated module_filter_update_last_removed value. → (Open) created by bhanu951
I am trying to upgrade module from 4.x version to 5.x version.
I am getting the below error
[error] The installed version of the /Module Filter/ module is too old to update.
Update to an intermediate version first (last removed version: 9403,
installed version: 8000).
The commit e115869e Added back module_filter_update_9403
but hasn't updated hook_update_last_removed
which is causing the above error.
Upgrade module from 4.x version to 5.x version.
We need to update below code
from
function module_filter_update_last_removed(): int {
return 9403;
}
to
function module_filter_update_last_removed(): int {
return 9402;
}
update code.
Active
5.0
Code