You are here

function commons_bw_update_7301 in Drupal Commons 7.3

Add the Title field to all browsing widget-enabled content types. per http://drupal.org/node/1969088.

File

modules/commons/commons_bw/commons_bw.install, line 7

Code

function commons_bw_update_7301() {
  module_enable(array(
    'title',
  ));
  $revert = array(
    'commons_bw' => array(
      'field_base',
      'field_instance',
    ),
  );
  features_revert($revert);
  return array();
}