You are here

function commons_groups_update_3105 in Drupal Commons 7.3

Change the OG Organizer role back to Administrator member. See http://drupal.org/node/1940150 for more information.

File

modules/commons/commons_groups/commons_groups.install, line 52

Code

function commons_groups_update_3105() {
  $result = db_update('og_role')
    ->fields(array(
    'name' => 'administrator member',
  ))
    ->condition('rid', 3, '=')
    ->execute();
  return array();
}