Skip to content
Snippets Groups Projects
Commit dfa37ba3 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #1019352 by Jody Lynn: delete blog module's variable on hook_uninstall().

parent 224aae4b
No related branches found
No related tags found
No related merge requests found
......@@ -14,3 +14,10 @@ function blog_install() {
$types = node_type_get_types();
node_add_body_field($types['blog']);
}
/**
* Implements hook_uninstall().
*/
function blog_uninstall() {
variable_del('blog_block_count');
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment