function revisioning_update_6313 in Revisioning 6.3
Implementation of hook_update_N().
Alteration of Workflow form is realised through Workflow Extensions module, removing the need to change weights. In fact change of weight is related to the trouble described in [#482126], comment #9,
File
- ./
revisioning.install, line 34 - Install and uninstall hooks for Revisioning module.
Code
function revisioning_update_6313() {
$ret = array();
$ret[] = update_sql("UPDATE {system} SET weight = 0 WHERE name = 'revisioning'");
return $ret;
}