You are here

function commons_update_3101 in Drupal Commons 7.3

Enable the Origins theme and set it as the default. *

File

./commons.install, line 592
Install, update and uninstall functions for the Commons install profile.

Code

function commons_update_3101() {
  theme_enable(array(
    'adaptivetheme_admin',
  ));
  variable_set('theme_default', 'commons_origins');
  variable_set('node_admin_theme', FALSE);
  return array();
}