Changeset 3228724
- Timestamp:
- 01/26/2025 10:48:02 AM (13 months ago)
- Location:
- tida-url-screenshot
- Files:
-
- 19 added
- 1 deleted
- 2 edited
-
tags/1.1.1 (added)
-
tags/1.1.1/assets (added)
-
tags/1.1.1/assets/css (added)
-
tags/1.1.1/assets/css/tida-screenshot-admin.css (added)
-
tags/1.1.1/assets/css/tida-screenshot.css (added)
-
tags/1.1.1/assets/js (added)
-
tags/1.1.1/assets/js/tida-screenshot.js (added)
-
tags/1.1.1/includes (added)
-
tags/1.1.1/includes/admin (added)
-
tags/1.1.1/includes/admin/class-settings.php (added)
-
tags/1.1.1/includes/class-API.php (added)
-
tags/1.1.1/includes/class-abstract-api.php (added)
-
tags/1.1.1/includes/class-api-flash.php (added)
-
tags/1.1.1/includes/class-screenshot-layer.php (added)
-
tags/1.1.1/includes/class-screenshot-machine.php (added)
-
tags/1.1.1/includes/class-screenshot-one.php (added)
-
tags/1.1.1/readme.txt (added)
-
tags/1.1.1/tida-url-screenshot.php (added)
-
tags/1.1.1/uninstall.php (added)
-
tags/1.1/readme.txt (deleted)
-
trunk/includes/admin/class-settings.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tida-url-screenshot/trunk/includes/admin/class-settings.php
r3228575 r3228724 184 184 ?> 185 185 <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> 187 187 <?php 188 188 $api_services_list = array(); … … 191 191 foreach ($api_services_list as $key => $item) { 192 192 $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>'; 194 194 } 195 195 ?> … … 273 273 ?> 274 274 <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> 276 276 <?php 277 277 $button_positions = array('top' => __('Top of Content', 'tida-url-screenshot'), 'bottom' => __('Bottom of Content', 'tida-url-screenshot')); 278 278 foreach ($button_positions as $key => $item) { 279 279 $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>'; 281 281 } 282 282 ?> -
tida-url-screenshot/trunk/readme.txt
r3228596 r3228724 4 4 Requires at least: 4.0 5 5 Tested up to: 6.7 6 Stable tag: 1.1 6 Stable tag: 1.1.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 53 53 == Changelog == 54 54 55 = 1.1.1 = 56 * Bugs fixes and improvements 57 55 58 = 1.1 = 56 59 * Bugs fixes and improvements
Note: See TracChangeset
for help on using the changeset viewer.