Fix in_array and explode warnings

This commit is contained in:
Jon goldberg 2016-05-20 00:10:22 -04:00
parent 7103382fec
commit f123890b01

View File

@ -78,8 +78,9 @@ function fancytokens_civicrm_tokens( &$tokens ){
$p_type = "";
if( isset( $cur['group_type'])){
$p_type = $cur['group_type'];
// Some group_types are arrays, if the profile is used on an event form
$p_type = is_array($p_type) ? $p_type[0] : $p_type;
}
$type_array = explode( "," , $p_type); // Contributions Activity
if ( false == ( in_array("Participant", $type_array ) || in_array("Membership", $type_array ) || in_array("Household", $type_array ) || in_array("Contributions", $type_array ) || in_array("Activity", $type_array ) )) {
@ -91,6 +92,7 @@ function fancytokens_civicrm_tokens( &$tokens ){
}
}
}
}