You are here

function commons_q_a_update_3103 in Drupal Commons 7.3

Update the Commons Q&A widget per http://drupal.org/node/1940644.

File

modules/commons/commons_q_a/commons_q_a.install, line 56

Code

function commons_q_a_update_3103() {

  // The Commons Q&A widget is defined via a hook_strongarm_alter()
  // implementation altering rate_widgets variable, defined by commons_like.
  $revert = array(
    'commons_like' => array(
      'variable',
    ),
  );
  features_revert($revert);
  return array();
}