function customfilter_update_6119 in Custom filter 6
Same name and namespace in other branches
- 7.2 customfilter.install \customfilter_update_6119()
- 7 customfilter.install \customfilter_update_6119()
Implements hook_update_N().
File
- ./
customfilter.install, line 449 - Installation file for Custom filter.
Code
function customfilter_update_6119() {
$ret = array();
variable_del('customfilter_update_6111');
variable_del('customfilter_update_6113');
variable_del('customfilter_update_6115');
variable_del('customfilter_update_6116');
variable_del('customfilter_update_6117');
variable_del('customfilter_update_6118');
$ret[] = array(
'success' => TRUE,
'query' => 'Removed unused variables',
);
return $ret;
}