You are here

function nd_update_2 in Display Suite 6.3

Implementation of hook_update_N(). We set the nd_use_date_api to FALSE because otherwhise people will lose the post date PHP field if they use it.

File

modules/nd/nd.install, line 45
Node displays install file.

Code

function nd_update_2() {
  variable_set('nd_use_date_api', FALSE);
  return array();
}