Implements hook_block_save().
function aggregator_block_save($delta = '', $edit = array()) {
list($type, $id) = explode('-', $delta);
if ($type == 'category') {
db_update('aggregator_category')
->fields(array(
'block' => $edit['block'],
))
->condition('cid', $id)
->execute();
}
}