Skip to content

Commit

Permalink
Don't allow grouping if multiple options is checked, fixes #5
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendan Abbott committed Jun 2, 2011
1 parent db039e6 commit a85ecba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fields/field.selectbox_link.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function canFilter(){
}

public function allowDatasourceOutputGrouping(){
return true;
return ($this->get('allow_multiple_selection') == 'yes' ? false : true);
}

public function allowDatasourceParamOutput(){
Expand Down

0 comments on commit a85ecba

Please sign in to comment.