You are here

commons_featured.install in Drupal Commons 7.3

File

modules/commons/commons_featured/commons_featured.install
View source
<?php

/**
 * Replace the title attribute with the title field in view displays.
 */
function commons_featured_update_7300() {
  $revert = array(
    'commons_featured' => array(
      'views_view',
    ),
  );
  features_revert($revert);
  return array();
}

Functions

Namesort descending Description
commons_featured_update_7300 Replace the title attribute with the title field in view displays.