Skip to content

Commit 7fcf22a

Browse files
committed
CRM-16540 - Fix undefined variable
1 parent 60e3c3e commit 7fcf22a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/views/civicrm/civicrm_handler_filter_state_multi.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class civicrm_handler_filter_state_multi extends views_handler_filter_in_operato
8181
} // end foreach
8282

8383
// country filter exists, remove options, add js
84-
if ($country_field) {
84+
if (!empty($country_field)) {
8585
$this->value_options = $loaded_list;
8686

8787
$fid=md5($country_field);

0 commit comments

Comments
 (0)