You are here

function commons_update_3112 in Drupal Commons 7.3

Revert Message types to use the correct title field token.

File

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

Code

function commons_update_3112() {
  $revert = array(
    'commons_wikis' => array(
      'message_type',
    ),
    'commons_q_a' => array(
      'message_type',
    ),
    'commons_posts' => array(
      'message_type',
    ),
    'commons_notify' => array(
      'message_type',
    ),
    'commons_like' => array(
      'message_type',
    ),
    'commons_activity_streams' => array(
      'message_type',
    ),
  );
  features_revert($revert);
  return array();
}