You are here

function ds_update_2 in Display Suite 6.2

Same name and namespace in other branches
  1. 6.3 ds.install \ds_update_2()
  2. 6 ds.install \ds_update_2()

Implements hook_update_N().

File

./ds.install, line 92
Display suite install file.

Code

function ds_update_2() {

  // Enable the UI module, not everyone knows that the module UI
  // and core are separated now.
  module_enable(array(
    'ds_ui',
  ));
  return array();
}