You are here

function ds_update_2 in Display Suite 6.3

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

Implementation of hook_update_N().

File

./ds.install, line 106
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();
}