diff options
-rw-r--r-- | modules/system/system.updater.inc | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/modules/system/system.updater.inc b/modules/system/system.updater.inc index c86a518bb..c731c1588 100644 --- a/modules/system/system.updater.inc +++ b/modules/system/system.updater.inc @@ -136,17 +136,11 @@ class ThemeUpdater extends Updater implements DrupalUpdaterInterface { clearstatcache(); system_rebuild_theme_data(); - // Active the theme - db_update('system') - ->fields(array('status' => 1)) - ->condition('type', 'theme') - ->condition('name', $this->name) - ->execute(); } public function postInstallTasks() { return array( - l(t('Set the !project theme as default', array('!project' => $this->title)), 'admin/appearance'), + l(t('Enable newly added themes'), 'admin/appearance'), l(t('Administration pages'), 'admin'), ); } |