You are here

function content_update_6008 in Content Construction Kit (CCK) 6.3

Same name and namespace in other branches
  1. 6.2 content.install \content_update_6008()

Dummy update function to make sure schema version gets updated.

File

./content.install, line 479

Code

function content_update_6008() {
  if ($abort = content_check_update()) {
    return $abort;
  }
  variable_set('content_schema_version', 6008);
  return array();
}