block_filter_format_delete

Versions
mediamosa-21
block_filter_format_delete($format, $fallback)

Implements hook_filter_format_delete().

Code

modules/block/block.module, line 902

<?php
function block_filter_format_delete($format, $fallback) {
  db_update('block_custom')
    ->fields(array('format' => $fallback->format))
    ->condition('format', $format->format)
    ->execute();
}
?>