Plugin Directory

Changeset 3228724


Ignore:
Timestamp:
01/26/2025 10:48:02 AM (13 months ago)
Author:
tidaweb
Message:
  • Bugs fixes and improvements
Location:
tida-url-screenshot
Files:
19 added
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • tida-url-screenshot/trunk/includes/admin/class-settings.php

    r3228575 r3228724  
    184184        ?>
    185185        <select name="tida_url_screenshot_settings[api_service]">
    186             <option value=""><?php _e('Select the API service...', 'tida-url-screenshot'); ?></option>
     186            <option value=""><?php esc_html_e('Select the API service...', 'tida-url-screenshot'); ?></option>
    187187            <?php
    188188            $api_services_list = array();
     
    191191            foreach ($api_services_list as $key => $item) {
    192192                $selected = (isset($settings['api_service']) && $settings['api_service'] === $key) ? 'selected' : '';
    193                 echo '<option value="' . esc_attr($key) . '" ' . $selected . '>' . esc_html($item) . '</option>';
     193                echo '<option value="' . esc_attr($key) . '" ' . esc_attr($selected) . '>' . esc_html($item) . '</option>';
    194194            }
    195195            ?>
     
    273273        ?>
    274274        <select name="tida_url_screenshot_settings[button_position]">
    275             <option value=""><?php _e('Select the button position...', 'tida-url-screenshot'); ?></option>
     275            <option value=""><?php esc_html_e('Select the button position...', 'tida-url-screenshot'); ?></option>
    276276            <?php
    277277            $button_positions = array('top' => __('Top of Content', 'tida-url-screenshot'), 'bottom' => __('Bottom of Content', 'tida-url-screenshot'));
    278278            foreach ($button_positions as $key => $item) {
    279279                $selected = (isset($settings['button_position']) && $settings['button_position'] === $key) ? 'selected' : '';
    280                 echo '<option value="' . esc_attr($key) . '" ' . $selected . '>' . esc_html($item) . '</option>';
     280                echo '<option value="' . esc_attr($key) . '" ' . esc_attr($selected) . '>' . esc_html($item) . '</option>';
    281281            }
    282282            ?>
  • tida-url-screenshot/trunk/readme.txt

    r3228596 r3228724  
    44Requires at least: 4.0
    55Tested up to: 6.7
    6 Stable tag: 1.1
     6Stable tag: 1.1.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5353== Changelog ==
    5454
     55= 1.1.1 =
     56* Bugs fixes and improvements
     57
    5558= 1.1 =
    5659* Bugs fixes and improvements
Note: See TracChangeset for help on using the changeset viewer.