You are here

function arrange_fields_update_6100 in Arrange Fields 6

Same name and namespace in other branches
  1. 7 arrange_fields.install \arrange_fields_update_6100()

The main thing we want to do here is up the weight to a higher number. Before now, the weight was set to 50. But, in order for this module to work with vertical tabs (whose weight is 300), the weight needs to be higher.

File

./arrange_fields.install, line 39

Code

function arrange_fields_update_6100() {
  db_query("UPDATE {system} SET weight = 500 WHERE name = 'arrange_fields'");
}