function nodeformsettings_update_6200 in Node and Comments Form Settings 6.2
Same name and namespace in other branches
- 6.3 nodeformsettings.install \nodeformsettings_update_6200()
Set propper weight
File
- ./
nodeformsettings.install, line 30
Code
function nodeformsettings_update_6200() {
$ret = array();
db_query("UPDATE {system} SET weight = 1 WHERE name = 'nodeformsettings'");
return $ret;
}