You are here

function commons_search_update_7002 in Drupal Commons 7.3

Replace the title attribute with the title field in view displays.

File

modules/commons/commons_search/commons_search.install, line 13

Code

function commons_search_update_7002() {
  $revert = array(
    'commons_search' => array(
      'views_view',
    ),
  );
  features_revert($revert);
  return array();
}