function og_update_6000 in Organic groups 6.2
Same name and namespace in other branches
- 6 og.install \og_update_6000()
File
- ./
og.install, line 390
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;
}