Skip to content

Commit

Permalink
phpcs round 2
Browse files Browse the repository at this point in the history
  • Loading branch information
timiwahalahti committed Sep 20, 2023
1 parent e8856a3 commit 10e9049
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function form_prefill_select( $data ) {
<label><?php esc_html_e( 'Sponsor:', 'wordcamporg' ); ?></label>
<select name="sponsor_id">
<?php foreach ( $sponsors as $sponsor ) : ?>
<option value="<?php echo esc_attr( $sponsor->ID ) ?>"><?php echo esc_html( get_the_title( $sponsor ) ) ?></option>
<option value="<?php echo esc_attr( $sponsor->ID ); ?>"><?php echo esc_html( get_the_title( $sponsor ) ); ?></option>
<?php endforeach; ?>
</select>
<span class="description"><?php esc_html_e( 'Sponsorship details will be pre-filled with the data on sponsor post.', 'wordcamporg' ); ?></span>
Expand Down

0 comments on commit 10e9049

Please sign in to comment.