contact_update_7001

Versions
7
contact_update_7001()

Rename the administer contact forms permission.

Related topics

Code

modules/contact/contact.install, line 108

<?php
function contact_update_7001() {
  db_update('role_permission')
    ->fields(array('permission' => 'administer contact forms'))
    ->condition('permission', 'administer site-wide contact form')
    ->execute();
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.