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

- Patch #547290 by David_Rothstein: corrected behavior of new forum topics,...

- Patch #547290 by David_Rothstein: corrected behavior of new forum topics, and properly delete an unused variable upon uninstallation.
parent 14f98f2b
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -17,6 +17,9 @@ function forum_install() {
->fields(array('weight' => 1))
->condition('name', 'forum')
->execute();
// Forum topics are published by default, but do not have any other default
// options set (for example, they are not promoted to the front page).
variable_set('node_options_forum', array('status'));
}
function forum_enable() {
......@@ -66,6 +69,7 @@ function forum_uninstall() {
variable_del('forum_order');
variable_del('forum_block_num_active');
variable_del('forum_block_num_new');
variable_del('node_options_forum');
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment