Changeset 3180569
- Timestamp:
- 11/03/2024 06:25:40 AM (14 months ago)
- Location:
- slider-wd/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
slider-wd.php (modified) (2 diffs)
-
wd/includes/notices.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
slider-wd/trunk/readme.txt
r3171539 r3180569 5 5 Tested up to: 5.8 6 6 Requires PHP: 5.2 7 Stable tag: 1.2.6 07 Stable tag: 1.2.61 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 20 20 == Changelog == 21 21 22 23 = 1.2.61 = 24 * Fixed: Security issue. 22 25 23 26 = 1.2.60 = -
slider-wd/trunk/slider-wd.php
r3171539 r3180569 4 4 * Plugin URI: https://10web.io/plugins/wordpress-slider/?utm_source=slider&utm_medium=free_plugin 5 5 * Description: This is a responsive plugin, which allows adding sliders to your posts/pages and to custom location. It uses large number of transition effects and supports various types of layers. 6 * Version: 1.2.6 06 * Version: 1.2.61 7 7 * Author: 10Web 8 8 * Author URI: https://10web.io/pricing/?utm_source=slider&utm_medium=free_plugin … … 80 80 $this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__))); 81 81 $this->main_file = plugin_basename(__FILE__); 82 $this->plugin_version = '1.2.6 0';83 $this->db_version = '1.2.6 0';82 $this->plugin_version = '1.2.61'; 83 $this->db_version = '1.2.61'; 84 84 $this->prefix = 'wds'; 85 85 $this->nicename = __('Slider', $this->prefix); -
slider-wd/trunk/wd/includes/notices.php
r2088407 r3180569 98 98 <p class="wd-notice-body">' . $admin_display_msg . '</p> 99 99 <ul class="wd-notice-body wd-blue">' . $admin_display_link . '</ul> 100 <a href="' . $query_str. '" class="dashicons dashicons-dismiss"></a>100 <a href="' . esc_url($query_str) . '" class="dashicons dashicons-dismiss"></a> 101 101 </div>'; 102 102 } … … 107 107 ' . $admin_display_link . ' 108 108 </ul>'; 109 echo '<a href="' . $query_str. '" class="dashicons dashicons-dismiss close-promo"></a>';109 echo '<a href="' . esc_url($query_str) . '" class="dashicons dashicons-dismiss close-promo"></a>'; 110 110 echo '</div>'; 111 111 } … … 212 212 'msg' => sprintf(__('We hope you\'ve enjoyed using WordPress %s! Would you consider leaving us a review on WordPress.org?', $wd_options->prefix), $wd_options->plugin_title), 213 213 'link' => '<li><span class="dashicons dashicons-external"></span><a href="https://wordpress.org/support/plugin/' . $wd_options->plugin_wordpress_slug . '/reviews?filter=5&rate=5#new-post" target="_blank">' . __('Sure! I\'d love to!', $wd_options->prefix) . '</a></li> 214 <li><span class="dashicons dashicons-smiley"></span><a href="' . $two_week_review_ignore. '"> ' . __('I\'ve already left a review', $wd_options->prefix) . '</a></li>215 <li><span class="dashicons dashicons-calendar-alt"></span><a href="' . $two_week_review_temp. '">' . __('Maybe Later', $wd_options->prefix) . '</a></li>216 <li><span class="dashicons dashicons-dismiss"></span><a href="' . $two_week_review_ignore. '">' . __('Never show again', $wd_options->prefix) . '</a></li>',214 <li><span class="dashicons dashicons-smiley"></span><a href="' . esc_url($two_week_review_ignore) . '"> ' . __('I\'ve already left a review', $wd_options->prefix) . '</a></li> 215 <li><span class="dashicons dashicons-calendar-alt"></span><a href="' . esc_url($two_week_review_temp) . '">' . __('Maybe Later', $wd_options->prefix) . '</a></li> 216 <li><span class="dashicons dashicons-dismiss"></span><a href="' . esc_url($two_week_review_ignore) . '">' . __('Never show again', $wd_options->prefix) . '</a></li>', 217 217 'later_link' => $two_week_review_temp, 218 218 'int' => 14
Note: See TracChangeset
for help on using the changeset viewer.