You are here

function og_update_6000 in Organic groups 6

Same name and namespace in other branches
  1. 6.2 og.install \og_update_6000()

File

./og.install, line 368

Code

function og_update_6000() {
  $ret = array();

  // Fix how we append the custom request text from a group join request.
  $name = 'og_request_user_body';
  if ($txt = variable_get($name, FALSE)) {
    $txt .= "\n\nPersonal message from @username:\n------------------\n\n@request";
    variable_set($name, $txt);
  }
  return $ret;
}