Initial Drupal 11 with DDEV setup
This commit is contained in:
16
web/core/modules/comment/comment.post_update.php
Normal file
16
web/core/modules/comment/comment.post_update.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Post update functions for the comment module.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implements hook_removed_post_updates().
|
||||
*/
|
||||
function comment_removed_post_updates(): array {
|
||||
return [
|
||||
'comment_post_update_enable_comment_admin_view' => '9.0.0',
|
||||
'comment_post_update_add_ip_address_setting' => '9.0.0',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user