Skip to content

Commit

Permalink
Update my-calendar-event-editor.php
Browse files Browse the repository at this point in the history
  • Loading branch information
joedolson committed Jan 5, 2025
1 parent fe8512e commit 4e39cbc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/my-calendar-event-editor.php
Original file line number Diff line number Diff line change
Expand Up @@ -1343,7 +1343,11 @@ function mc_show_block( $field, $has_data, $data, $display = true, $default_str
$repeats = '0';
}
$return = '
<div>' . $prev . '<input type="hidden" name="event_repeats" value="' . esc_attr( $repeats ) . '" /><input type="hidden" name="event_every" value="' . esc_attr( $every ) . '" /><input type="hidden" name="event_recur" value="' . esc_attr( $recur ) . '" /></div>';
<div>
' . $prev . '<input type="hidden" name="event_repeats" value="' . esc_attr( $repeats ) . '" />
<input type="hidden" name="event_every" value="' . esc_attr( $every ) . '" />
<input type="hidden" name="event_recur" value="' . esc_attr( $recur ) . '" />
</div>';
}
break;
case 'event_access':
Expand Down

0 comments on commit 4e39cbc

Please sign in to comment.