You are here

function linkit_update_6100 in Linkit 6

Create a new variable and add the old settings to it.

File

./linkit.install, line 49
Installation file for linkit.

Code

function linkit_update_6100() {
  $ret = array();
  $old = variable_get('linkit_node', array());
  $new = array(
    'display_settings' => $old,
  );
  variable_set('linkit_node', $new);
  return $ret;
}