You are here

function customfilter_update_6200 in Custom filter 6.2

Implements hook_update_N().

File

./customfilter.install, line 198
Installation file for Custom filter.

Code

function customfilter_update_6200() {
  $ret = array();
  if (variable_get('customfilter_update', 0) < 6120) {
    $ret['#abort'] = array(
      'success' => FALSE,
      'query' => 'The only supported update is from version 6.x-1.0-rc3 or later.',
    );
  }
  return $ret;
}