Active
Project:
Views (for Drupal 7)
Version:
7.x-3.5
Component:
exposed filters
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
9 Feb 2013 at 17:56 UTC
Updated:
10 Feb 2013 at 10:50 UTC
function get_value_options() {
if (isset($this->value_options)) {
return;
}
...
This seems to be simply wrong.
Why return undefined when there is data to return?
Perhaps the following should be more appropriate?
function get_value_options() {
if (isset($this->value_options)) {
return $this->value_options;
}
...
Comments
Comment #1
dawehnerYou should always populate it, and the code will use the populated value.
Feel free to provide a fix, but this is really not critical.