Git commit 202d532e9959cf15d432b0cac2ca85a45a838bcd
From 08/16/2013
added:
if (module_exists('views')) {
throw new DrupalUpdateException('The Views module must be downloaded and available for Media updates to proceed.');
}
So the hook uptade 7202 became:
function media_update_7202() {
module_enable(array('views'));
if (module_exists('views')) {
throw new DrupalUpdateException('The Views module must be downloaded and available for Media updates to proceed.');
}
}
And this is impossible to succeed, if you're trying to run hook update 7202 it will fail
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | 2067963-fix-media-update-7202.patch | 478 bytes | dave reid |
Comments
Comment #1
dave reidThanks, and sorry we didn't notice this sooner. :(
Fixed in 7.x-2.x and will be included in the next 7200 update.
http://drupalcode.org/project/media.git/commit/d4992df
Comment #2
alexandrezia commentedThanks for the quick fix!