function content_profile_registration_update_6001 in Content Profile 6
Update the modules weight to 1.
File
- modules/
content_profile_registration.install, line 18 - Content Profile Registration - Installation file.
Code
function content_profile_registration_update_6001() {
$ret = array();
$ret[] = update_sql("UPDATE {system} SET weight = 1 WHERE name = 'content_profile_registration'");
return $ret;
}