fix array to string php warning

pull/3054/head
Andrew Bauer 2020-10-01 09:13:50 -05:00
parent e26e36606f
commit b8d95dfa05
1 changed files with 1 additions and 1 deletions

View File

@ -544,7 +544,7 @@ function htmlOptions($options, $values) {
';
} # end foreach options
if ( $values and ! $has_selected ) {
ZM\Warning('Specified value '.$values.' not in contents: '.print_r($options, true));
ZM\Warning('Specified value '.print_r($values, true).' not in contents: '.print_r($options, true));
}
return $options_html;
} # end function htmlOptions