summaryrefslogtreecommitdiff
path: root/modules/comment/comment.install
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-06-14 04:27:14 -0400
committerwebchick <webchick@24967.no-reply.drupal.org>2011-06-14 04:27:14 -0400
commit6bca3db38b7baa8e1e1340ca8cb5bda1ff67e2e5 (patch)
tree877dab4958ada7b2dc3c84bf0f61850867e82ebf /modules/comment/comment.install
parent078dc10b2ac4b6d4edbc1c73cb9834f521b0b762 (diff)
downloadbrdo-6bca3db38b7baa8e1e1340ca8cb5bda1ff67e2e5.tar.gz
brdo-6bca3db38b7baa8e1e1340ca8cb5bda1ff67e2e5.tar.bz2
Issue #1115510 by catch, barbi, amateescu: Fixed Entity providing modules must call field_attach_delete_bundle() in hook_uninstall().
Diffstat (limited to 'modules/comment/comment.install')
-rw-r--r--modules/comment/comment.install1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/comment/comment.install b/modules/comment/comment.install
index d64b3acde..120467fd0 100644
--- a/modules/comment/comment.install
+++ b/modules/comment/comment.install
@@ -16,6 +16,7 @@ function comment_uninstall() {
variable_del('comment_block_count');
$node_types = array_keys(node_type_get_types());
foreach ($node_types as $node_type) {
+ field_attach_delete_bundle('comment', 'comment_node_' . $node_type);
variable_del('comment_' . $node_type);
variable_del('comment_anonymous_' . $node_type);
variable_del('comment_controls_' . $node_type);