Active
Project:
OG Audience By Type
Version:
6.x-1.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
12 Jan 2009 at 12:39 UTC
Updated:
17 Oct 2010 at 03:44 UTC
the title says pretty much it all, impossible to set group selection as required, nothing happens.. thanks
Comments
Comment #1
magpie5212 commentedSubscribing
Comment #2
magpie5212 commentedComment #3
ghosty commentedIf you want to make the set group required, you can create a simple module and use hook_form_alter to force any form field to be required.
function mymodulename_form_alter(&$form, &$form_state, $form_id) {
$form['og_nodeapi']['visible']['og_abt'][0]['og_group_type_group_node_']['#required'] = TRUE;
}