You are here

function commons_documents_update_7008 in Drupal Commons 7.3

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

File

modules/commons/commons_documents/commons_documents.install, line 109

Code

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