You are here

function content_profile_update_6001 in Content Profile 6

Set module weight to -1, as explained in content_profile_install().

File

./content_profile.install, line 86
Content profile installation file.

Code

function content_profile_update_6001() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = -1 WHERE name = 'content_profile'");
  return $ret;
}