Skip to content

Commit

Permalink
add a cast
Browse files Browse the repository at this point in the history
  • Loading branch information
otrok7 committed Jun 14, 2024
1 parent efc5e7e commit abe26b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bmlt-meeting-list.php
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,7 @@ function bmlt_meeting_list($atts = null, $content = null)
$result = json_decode(wp_remote_retrieve_body($results), true);
if (!empty($this->options['extra_meetings'])) {
$extras = "";
foreach ($this->options['extra_meetings'] as $value) {
foreach ((array)$this->options['extra_meetings'] as $value) {
$data = array(" [", "]");
$value = str_replace($data, "", $value);
$extras .= "&meeting_ids[]=".$value;
Expand Down

0 comments on commit abe26b3

Please sign in to comment.