function cas_update_7000 in CAS 7
Transform numeric block deltas to string block deltas.
File
- ./
cas.install, line 373 - Installation hooks for the CAS module.
Code
function cas_update_7000(&$sandbox) {
$renamed_deltas = array(
'cas' => array(
'0' => 'login',
),
);
$moved_deltas = array();
update_fix_d7_block_deltas($sandbox, $renamed_deltas, $moved_deltas);
}