Closed (fixed)
Project:
Block edit
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
22 Sep 2010 at 07:39 UTC
Updated:
10 Jan 2012 at 18:40 UTC
There is not install file, thus no uninstall hook, to get rid of the 11 or so variables introduced by this module. Copy and paste the below code into block_edit.install and commit!
function block_edit_uninstall () {
variable_del('block_edit_block_active_pages');
variable_del('block_edit_block_active_type');
variable_del('block_edit_block_links');
variable_del('block_edit_content_types');
variable_del('block_edit_display_options');
variable_del('block_edit_hover_links');
variable_del('block_edit_node_active_pages');
variable_del('block_edit_node_active_type');
variable_del('block_edit_node_links');
variable_del('block_edit_panels_links');
variable_del('block_edit_tabs');
}
Comments
Comment #1
joelstein commentedFixed in 6.x-1.x:
http://drupal.org/commitlog/commit/7690/f92c57d3678433e6c82db6ecbb3d0f03...
A new release should be available shortly.