function fe_taxonomy_update_6011 in Features Extra 6
Implementation of hook_update_N(). Adjust module weight.
File
- ./fe_taxonomy.install, line 16 
Code
function fe_taxonomy_update_6011() {
  $weight = db_result(db_query("SELECT weight FROM {system} WHERE name = 'taxonomy'"));
  db_query("UPDATE {system} SET weight = %d WHERE name = 'fe_taxonomy'", $weight + 1);
}