FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit c81e93be authored by Chris Wilkinson's avatar Chris Wilkinson
Browse files

Merge pull request #13 from thewilkybarkid/metatag

Enable Metatag module
parents eb1cb4ea 5f574e35
No related branches found
No related tags found
No related merge requests found
......@@ -40,6 +40,9 @@ dependencies[] = menu_block
dependencies[] = menu_firstchild
dependencies[] = menu_force
dependencies[] = menu_trail_by_path
dependencies[] = metatag
dependencies[] = metatag_dc
dependencies[] = metatag_views
dependencies[] = pathauto
dependencies[] = raven
dependencies[] = realname
......
......@@ -276,3 +276,18 @@ function cambridge_update_7101() {
}
}
}
/**
* Enable Metatag modules.
*/
function cambridge_update_7102() {
if (module_exists('metatag') || module_exists('metatags_quick') || module_exists('opengraph_meta')) {
return;
}
$result = module_enable(array('metatag', 'metatag_dc', 'metatag_views'));
if (!$result) {
throw new DrupalUpdateException('Failed to enabled Metatag modules');
}
}
......@@ -44,6 +44,9 @@ projects[memcache][patch][] = "http://drupal.org/files/memcache-display-connecti
projects[menu_admin_per_menu] = "1.0"
projects[menu_force] = "1.2"
projects[menu_trail_by_path] = "2.0"
projects[metatag][version] = "1.0-beta9"
projects[metatag][subdir] = "patched"
projects[metatag][patch][] = "http://drupal.org/files/issues/2237507-5-metatag_revision_condition.patch"
projects[nodequeue] = "2.0-beta1"
projects[pathologic] = "2.12"
projects[realname] = "1.2"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment