Skip to content

Commit

Permalink
fix: Changed USA to Asia-Pacific in a option
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmolinacano committed Feb 7, 2025
1 parent 545e8ee commit e86e899
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ private function render_html_dooplugins_host( $option_name ) {
$selected_us = $saved_value === $key_us ? ' selected ' : '';
echo wp_kses( '<option value=" ' . esc_attr( $key_us ) . ' "' . $selected_us . '> USA - ' . $key_us . ' </option>', $kses_args );
$selected_ap = $saved_value === $key_ap ? ' selected ' : '';
echo wp_kses( '<option value=" ' . esc_attr( $key_ap ) . ' "' . $selected_ap . '> USA - ' . $key_ap . ' </option>', $kses_args );
echo wp_kses( '<option value=" ' . esc_attr( $key_ap ) . ' "' . $selected_ap . '> Asia-Pacific - ' . $key_ap . ' </option>', $kses_args );
?>
</select>
<?php
Expand Down

0 comments on commit e86e899

Please sign in to comment.