You are here

function commons_polls_update_7000 in Drupal Commons 7.3

Disable summary on Poll nodes.

File

modules/commons/commons_polls/commons_polls.install, line 22

Code

function commons_polls_update_7000() {
  $revert = array(
    'commons_polls' => array(
      'field_instance',
    ),
  );
  features_revert($revert);
  return array();
}