diff --git a/metatag.install b/metatag.install index cb4e69d..7376bfc 100644 --- a/metatag.install +++ b/metatag.install @@ -75,16 +75,6 @@ function metatag_requirements($phase) { } } - // Check for Workbench Moderation v2, which Metatag doesn't work with yet. - if (module_exists('workbench_moderation') && !function_exists('workbench_moderation_node_type_moderated')) { - $requirements['metatag_wm2'] = array( - 'severity' => REQUIREMENT_ERROR, - 'title' => 'Metatag', - 'value' => $t('Incompatible with Workbench Moderation v2', array('@url' => 'http://drupal.org/project/workbench_moderation')), - 'description' => $t('Metatag is not currently compatible with Entity_Translation v2.'), - ); - } - // It's recommended to install the Transliteration module to clean up file // paths for use with image meta tags. if (!module_exists('transliteration')) { @@ -1006,7 +996,7 @@ function metatag_update_7017() { if (!variable_get('metatag_skip_update_7017', FALSE)) { // Let's add a temporary unique key so MySQL will let it go. db_add_unique_key('metatag', 'temp_key', array('entity_type', 'entity_id', 'revision_id', 'language')); - + // Now remove the PK before changing a field from serial. db_drop_primary_key('metatag');