Changeset 2624300
- Timestamp:
- 11/04/2021 12:33:39 AM (4 years ago)
- Location:
- admin-block-country
- Files:
-
- 46 added
- 2 edited
-
tags/7.1.4 (added)
-
tags/7.1.4/README.md (added)
-
tags/7.1.4/admin-block-country.php (added)
-
tags/7.1.4/css (added)
-
tags/7.1.4/css/style.css (added)
-
tags/7.1.4/geoip-api-php-master (added)
-
tags/7.1.4/geoip-api-php-master/.gitignore (added)
-
tags/7.1.4/geoip-api-php-master/ChangeLog (added)
-
tags/7.1.4/geoip-api-php-master/LICENSE (added)
-
tags/7.1.4/geoip-api-php-master/README.md (added)
-
tags/7.1.4/geoip-api-php-master/admin (added)
-
tags/7.1.4/geoip-api-php-master/admin/generate_geoipregionvars.php (added)
-
tags/7.1.4/geoip-api-php-master/benchmark.php (added)
-
tags/7.1.4/geoip-api-php-master/composer.json (added)
-
tags/7.1.4/geoip-api-php-master/geoip.inc (added)
-
tags/7.1.4/geoip-api-php-master/geoipcity.inc (added)
-
tags/7.1.4/geoip-api-php-master/geoipregionvars.php (added)
-
tags/7.1.4/geoip-api-php-master/sample-v6.php (added)
-
tags/7.1.4/geoip-api-php-master/sample.php (added)
-
tags/7.1.4/geoip-api-php-master/sample_asn-v6.php (added)
-
tags/7.1.4/geoip-api-php-master/sample_city-v6.php (added)
-
tags/7.1.4/geoip-api-php-master/sample_city.php (added)
-
tags/7.1.4/geoip-api-php-master/sample_distributed.php (added)
-
tags/7.1.4/geoip-api-php-master/sample_domain.php (added)
-
tags/7.1.4/geoip-api-php-master/sample_netspeed.php (added)
-
tags/7.1.4/geoip-api-php-master/sample_netspeedcell.php (added)
-
tags/7.1.4/geoip-api-php-master/sample_org.php (added)
-
tags/7.1.4/geoip-api-php-master/sample_region.php (added)
-
tags/7.1.4/geoip-api-php-master/timezone (added)
-
tags/7.1.4/geoip-api-php-master/timezone/make_time_zone_php_code.pl (added)
-
tags/7.1.4/geoip-api-php-master/timezone/test_timezone.php (added)
-
tags/7.1.4/geoip-api-php-master/timezone/timezone.php (added)
-
tags/7.1.4/get-country-name.php (added)
-
tags/7.1.4/images (added)
-
tags/7.1.4/images/edit.png (added)
-
tags/7.1.4/images/facebook.jpg (added)
-
tags/7.1.4/images/progress.gif (added)
-
tags/7.1.4/images/rate-me.png (added)
-
tags/7.1.4/images/resortable.jpg (added)
-
tags/7.1.4/images/trash.png (added)
-
tags/7.1.4/images/twitter.jpg (added)
-
tags/7.1.4/js (added)
-
tags/7.1.4/js/application.js (added)
-
tags/7.1.4/lib (added)
-
tags/7.1.4/lib/tom-m8te.php (added)
-
tags/7.1.4/readme.txt (added)
-
trunk/admin-block-country.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
admin-block-country/trunk/admin-block-country.php
r2612216 r2624300 17 17 4) Activate the plugin. 18 18 19 Version: 7.1. 319 Version: 7.1.4 20 20 Author: TheOnlineHero - Tom Skroza 21 21 License: GPL2 … … 58 58 add_action('admin_menu', 'AdminBlockCountry\register_admin_block_country_page'); 59 59 function 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'); 61 61 } 62 62 … … 147 147 148 148 function admin_block_country_current_countries_blocked() { 149 return e sc_html(explode(" ",get_option("admin_block_country_list")));149 return explode(" ", esc_html(get_option("admin_block_country_list"))); 150 150 } 151 151 -
admin-block-country/trunk/readme.txt
r2612216 r2624300 5 5 Requires at least: 3.3 6 6 Tested up to: 5.8.2 7 Stable tag: 7.1. 37 Stable tag: 7.1.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 29 29 30 30 == Changelog == 31 32 = 7.1.4 = 33 34 * Fixed bug caused by closing vulnerabilities 31 35 32 36 = 7.1.3 = … … 104 108 == Upgrade notice == 105 109 110 = 7.1.4 = 111 112 * Fixed bug caused by closing vulnerabilities 113 106 114 = 7.1.3 = 107 115
Note: See TracChangeset
for help on using the changeset viewer.