Plugin Directory

Changeset 2624300


Ignore:
Timestamp:
11/04/2021 12:33:39 AM (4 years ago)
Author:
MMDeveloper
Message:

Fixed bug which was caused by closing vulnerabilities

Location:
admin-block-country
Files:
46 added
2 edited

Legend:

Unmodified
Added
Removed
  • admin-block-country/trunk/admin-block-country.php

    r2612216 r2624300  
    17174) Activate the plugin.
    1818
    19 Version: 7.1.3
     19Version: 7.1.4
    2020Author: TheOnlineHero - Tom Skroza
    2121License: GPL2
     
    5858add_action('admin_menu', 'AdminBlockCountry\register_admin_block_country_page');
    5959function register_admin_block_country_page() {
    60     add_menu_page('Block Country', 'Block Country', 'manage_options', 'admin-block-country/admin-block-country.php', 'admin_block_country_initial_page');
     60    add_menu_page('Block Country', 'Block Country', 'manage_options', 'admin-block-country/admin-block-country.php', 'AdminBlockCountry\admin_block_country_initial_page');
    6161}
    6262
     
    147147
    148148function admin_block_country_current_countries_blocked() {
    149     return esc_html(explode(" ", get_option("admin_block_country_list")));
     149    return explode(" ", esc_html(get_option("admin_block_country_list")));
    150150}
    151151
  • admin-block-country/trunk/readme.txt

    r2612216 r2624300  
    55Requires at least: 3.3
    66Tested up to: 5.8.2
    7 Stable tag: 7.1.3
     7Stable tag: 7.1.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2929
    3030== Changelog ==
     31
     32= 7.1.4 =
     33
     34* Fixed bug caused by closing vulnerabilities
    3135
    3236= 7.1.3 =
     
    104108== Upgrade notice ==
    105109
     110= 7.1.4 =
     111
     112* Fixed bug caused by closing vulnerabilities
     113
    106114= 7.1.3 =
    107115
Note: See TracChangeset for help on using the changeset viewer.