Plugin Directory

Changeset 3180569


Ignore:
Timestamp:
11/03/2024 06:25:40 AM (14 months ago)
Author:
10web
Message:

Fixed: Security fix.

Location:
slider-wd/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • slider-wd/trunk/readme.txt

    r3171539 r3180569  
    55Tested up to: 5.8
    66Requires PHP: 5.2
    7 Stable tag: 1.2.60
     7Stable tag: 1.2.61
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2020== Changelog ==
    2121
     22
     23= 1.2.61 =
     24* Fixed: Security issue.
    2225
    2326= 1.2.60 =
  • slider-wd/trunk/slider-wd.php

    r3171539 r3180569  
    44 * Plugin URI: https://10web.io/plugins/wordpress-slider/?utm_source=slider&utm_medium=free_plugin
    55 * 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.60
     6 * Version: 1.2.61
    77 * Author: 10Web
    88 * Author URI: https://10web.io/pricing/?utm_source=slider&utm_medium=free_plugin
     
    8080    $this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
    8181    $this->main_file = plugin_basename(__FILE__);
    82     $this->plugin_version = '1.2.60';
    83     $this->db_version = '1.2.60';
     82    $this->plugin_version = '1.2.61';
     83    $this->db_version = '1.2.61';
    8484    $this->prefix = 'wds';
    8585    $this->nicename = __('Slider', $this->prefix);
  • slider-wd/trunk/wd/includes/notices.php

    r2088407 r3180569  
    9898                                <p class="wd-notice-body">' . $admin_display_msg . '</p>
    9999                                <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>
    101101                              </div>';
    102102                    }
     
    107107                                    ' . $admin_display_link . '
    108108                                  </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>';
    110110                        echo '</div>';
    111111                    }
     
    212212          '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),
    213213          '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>',
    217217          'later_link' => $two_week_review_temp,
    218218          'int' => 14
Note: See TracChangeset for help on using the changeset viewer.