You are here

function commons_update_3108 in Drupal Commons 7.3

Make the OG relationship required so that browsing widget tabs on the site homepage show an accurate count of content in each tab.

File

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

Code

function commons_update_3108() {
  $revert = array(
    'commons_posts' => array(
      'views_view',
    ),
    'commons_documents' => array(
      'views_view',
    ),
    'commons_polls' => array(
      'views_view',
    ),
    'commons_wikis' => array(
      'views_view',
    ),
    'commons_q_a' => array(
      'views_view',
    ),
  );
  features_revert($revert);
  return array();
}