diff options
Diffstat (limited to 'modules/user/user.install')
-rw-r--r-- | modules/user/user.install | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/user/user.install b/modules/user/user.install index 00afd2dc0..9d5256e62 100644 --- a/modules/user/user.install +++ b/modules/user/user.install @@ -824,6 +824,20 @@ function user_update_7013(&$sandbox) { } /** + * Rename the 'post comments without approval' permission. + * + * In Drupal 7, this permission has been renamed to 'skip comment approval'. + */ +function user_update_7014() { + db_update('role_permission') + ->fields(array('permission' => 'skip comment approval')) + ->condition('permission', 'post comments without approval') + ->execute(); + + return t("Renamed the 'post comments without approval' permission to 'skip comment approval'."); +} + +/** * @} End of "defgroup user-updates-6.x-to-7.x" * The next series of updates should start at 8000. */ |