Changeset 3303582
- Timestamp:
- 05/30/2025 12:31:09 PM (10 months ago)
- Location:
- belingogeo
- Files:
-
- 50 added
- 3 edited
-
tags/1.12.1 (added)
-
tags/1.12.1/belingoGeo.php (added)
-
tags/1.12.1/css (added)
-
tags/1.12.1/css/belingoGeo.css (added)
-
tags/1.12.1/css/belingoGeoAdmin.css (added)
-
tags/1.12.1/css/select2.min.css (added)
-
tags/1.12.1/examples (added)
-
tags/1.12.1/examples/all_cities_rf.csv (added)
-
tags/1.12.1/examples/example1.csv (added)
-
tags/1.12.1/images (added)
-
tags/1.12.1/images/logo_mini_20x20.png (added)
-
tags/1.12.1/includes (added)
-
tags/1.12.1/includes/admin (added)
-
tags/1.12.1/includes/admin/functions.php (added)
-
tags/1.12.1/includes/admin/settings.php (added)
-
tags/1.12.1/includes/ajax-functions.php (added)
-
tags/1.12.1/includes/belingogeo-city-class.php (added)
-
tags/1.12.1/includes/core-functions.php (added)
-
tags/1.12.1/includes/functions.php (added)
-
tags/1.12.1/includes/hooks.php (added)
-
tags/1.12.1/includes/shortcodes.php (added)
-
tags/1.12.1/includes/sitemaps.php (added)
-
tags/1.12.1/integrations (added)
-
tags/1.12.1/integrations/woocommerce.php (added)
-
tags/1.12.1/integrations/yoast.php (added)
-
tags/1.12.1/js (added)
-
tags/1.12.1/js/belingoGeo.js (added)
-
tags/1.12.1/js/belingoGeoAdmin.js (added)
-
tags/1.12.1/js/select2.min.js (added)
-
tags/1.12.1/languages (added)
-
tags/1.12.1/languages/belingogeo-ru_RU.mo (added)
-
tags/1.12.1/languages/belingogeo-ru_RU.po (added)
-
tags/1.12.1/languages/belingogeo.pot (added)
-
tags/1.12.1/readme.txt (added)
-
tags/1.12.1/templates (added)
-
tags/1.12.1/templates/after_cities_list.php (added)
-
tags/1.12.1/templates/before_cities_list.php (added)
-
tags/1.12.1/templates/cities_addon_contacts.php (added)
-
tags/1.12.1/templates/city_in_list.php (added)
-
tags/1.12.1/templates/popup_select_city.php (added)
-
tags/1.12.1/templates/question_city.php (added)
-
tags/1.12.1/templates/select_city.php (added)
-
tags/1.12.1/templates/selector.php (added)
-
tags/1.12.1/uninstall.php (added)
-
tags/1.12.1/vendor (added)
-
tags/1.12.1/vendor/SxGeo (added)
-
tags/1.12.1/vendor/SxGeo/SxGeo.php (added)
-
tags/1.12.1/vendor/SxGeo/SxGeoCity.dat (added)
-
tags/1.12.1/vendor/SxGeo/index.php (added)
-
tags/1.12.1/vendor/SxGeo/license.txt (added)
-
trunk/belingoGeo.php (modified) (2 diffs)
-
trunk/includes/admin/settings.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
belingogeo/trunk/belingoGeo.php
r3256988 r3303582 6 6 * Author URI: https://belingo.ru 7 7 * Author: Belingo llc 8 * Version: 1.12. 08 * Version: 1.12.1 9 9 * Text Domain: belingogeo 10 10 * Domain Path: /languages … … 37 37 require_once 'integrations/yoast.php'; 38 38 39 define("BELINGO_GEO_VERSION", '1.12. 0');39 define("BELINGO_GEO_VERSION", '1.12.1'); 40 40 41 41 add_action('template_redirect', 'belingoGeo_init_city'); -
belingogeo/trunk/includes/admin/settings.php
r3256727 r3303582 20 20 function belingogeo_download_example() { 21 21 22 if(isset($_GET['page']) && $_GET['page'] == 'belingogeo_import' && isset($_GET['example'])) { 23 $example = BELINGO_GEO_PLUGIN_DIR.'/examples/'.sanitize_text_field($_GET['example']); 24 belingogeo_download_csv_file($example); 25 exit; 22 if( isset( $_GET['page']) && $_GET['page'] == 'belingogeo_import' && isset( $_GET['example'] ) ) { 23 24 $example_file = ''; 25 26 if( $_GET['example'] == 'example1.csv' ) { 27 $example_file = 'example1.csv'; 28 }elseif( $_GET['example'] == 'all_cities_rf.csv' ) { 29 $example_file = 'all_cities_rf.csv'; 30 } 31 32 if( !empty( $example_file ) ) { 33 $example = BELINGO_GEO_PLUGIN_DIR.'/examples/'.sanitize_text_field( $_GET['example'] ); 34 belingogeo_download_csv_file( $example ); 35 exit; 36 } 37 26 38 } 27 39 -
belingogeo/trunk/readme.txt
r3256988 r3303582 4 4 Requires at least: 5.0.0 5 5 Tested up to: 6.7.2 6 Stable tag: 1.12. 06 Stable tag: 1.12.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 66 66 67 67 == Changelog == 68 = 1.12.1 = 69 * Fix bug access violation vulnerability 70 68 71 = 1.12.0 = 69 72 * Description update
Note: See TracChangeset
for help on using the changeset viewer.