Changeset 3359197
- Timestamp:
- 09/10/2025 12:50:31 PM (5 months ago)
- Location:
- category-maps
- Files:
-
- 59 added
- 4 edited
-
tags/1.4.3 (added)
-
tags/1.4.3/admin (added)
-
tags/1.4.3/admin/general-settings.php (added)
-
tags/1.4.3/admin/index.php (added)
-
tags/1.4.3/admin/settings.php (added)
-
tags/1.4.3/admin/shortcode-generator.php (added)
-
tags/1.4.3/assets (added)
-
tags/1.4.3/assets/dist (added)
-
tags/1.4.3/assets/dist/css (added)
-
tags/1.4.3/assets/dist/css/admin.min.css (added)
-
tags/1.4.3/assets/dist/css/bootstrap.min.css (added)
-
tags/1.4.3/assets/dist/css/catmaps.min.css (added)
-
tags/1.4.3/assets/dist/css/leaflet.min.css (added)
-
tags/1.4.3/assets/dist/images (added)
-
tags/1.4.3/assets/dist/images/index.php (added)
-
tags/1.4.3/assets/dist/images/marker-icon.png (added)
-
tags/1.4.3/assets/dist/images/marker-shadow.png (added)
-
tags/1.4.3/assets/dist/images/marker.svg (added)
-
tags/1.4.3/assets/dist/images/pro-banner.png (added)
-
tags/1.4.3/assets/dist/js (added)
-
tags/1.4.3/assets/dist/js/admin.min.js (added)
-
tags/1.4.3/assets/dist/js/catmaps.min.js (added)
-
tags/1.4.3/assets/dist/js/leaflet.min.js (added)
-
tags/1.4.3/assets/src (added)
-
tags/1.4.3/assets/src/css (added)
-
tags/1.4.3/assets/src/css/admin.css (added)
-
tags/1.4.3/assets/src/css/bootstrap.css (added)
-
tags/1.4.3/assets/src/css/catmaps.css (added)
-
tags/1.4.3/assets/src/css/index.php (added)
-
tags/1.4.3/assets/src/css/leaflet.css (added)
-
tags/1.4.3/assets/src/images (added)
-
tags/1.4.3/assets/src/images/index.php (added)
-
tags/1.4.3/assets/src/images/marker-icon.png (added)
-
tags/1.4.3/assets/src/images/marker-shadow.png (added)
-
tags/1.4.3/assets/src/images/marker.svg (added)
-
tags/1.4.3/assets/src/images/pro-banner.png (added)
-
tags/1.4.3/assets/src/js (added)
-
tags/1.4.3/assets/src/js/admin.js (added)
-
tags/1.4.3/assets/src/js/catmaps.js (added)
-
tags/1.4.3/assets/src/js/index.php (added)
-
tags/1.4.3/assets/src/js/leaflet.js (added)
-
tags/1.4.3/category-maps.php (added)
-
tags/1.4.3/includes (added)
-
tags/1.4.3/includes/autoload.php (added)
-
tags/1.4.3/includes/class-catmaps-plugin.php (added)
-
tags/1.4.3/includes/class-catmaps-shortcodes.php (added)
-
tags/1.4.3/includes/class-catmaps-utils.php (added)
-
tags/1.4.3/includes/index.php (added)
-
tags/1.4.3/index.php (added)
-
tags/1.4.3/languages (added)
-
tags/1.4.3/languages/category-maps.pot (added)
-
tags/1.4.3/languages/index.php (added)
-
tags/1.4.3/license.txt (added)
-
tags/1.4.3/readme.txt (added)
-
tags/1.4.3/templates (added)
-
tags/1.4.3/templates/add-form-field.php (added)
-
tags/1.4.3/templates/edit-form-field.php (added)
-
tags/1.4.3/templates/index.php (added)
-
tags/1.4.3/uninstall.php (added)
-
trunk/category-maps.php (modified) (2 diffs)
-
trunk/includes/class-catmaps-shortcodes.php (modified) (1 diff)
-
trunk/includes/class-catmaps-utils.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
category-maps/trunk/category-maps.php
r3334145 r3359197 17 17 * Plugin URI: https://categorymaps.wpwoodo.com/ 18 18 * Description: Creates nice filterable maps based on (custom) post types storing location data. 19 * Version: 1.4. 219 * Version: 1.4.3 20 20 * Requires at least: 5.6 21 21 * Requires PHP: 7.0 … … 29 29 30 30 define( 'CATMAPS_PREFIX', 'catmaps' ); 31 define( 'CATMAPS_VERSION', '1.4. 2' );31 define( 'CATMAPS_VERSION', '1.4.3' ); 32 32 define( 'CATMAPS_SLUG', 'category-maps' ); 33 33 define( 'CATMAPS_DIR', plugin_dir_url( __FILE__ ) ); -
category-maps/trunk/includes/class-catmaps-shortcodes.php
r3333818 r3359197 341 341 } else if ( $lat && $lon && ! $address ) { 342 342 $location = CatMaps_Utils::get_address_from_location( $lat, $lon ); 343 $address = $location['formatted_address'];343 $address = isset( $location['formatted_address'] ) ? $location['formatted_address'] : ''; 344 344 } else { 345 345 $lat = '52.520007'; 346 346 $lon = '13.404954'; 347 347 $location = CatMaps_Utils::get_address_from_location( $lat, $lon ); 348 $address = $location['formatted_address'];348 $address = isset( $location['formatted_address'] ) ? $location['formatted_address'] : ''; 349 349 } 350 350 -
category-maps/trunk/includes/class-catmaps-utils.php
r3333818 r3359197 157 157 158 158 } else { 159 self::log( "Error getting geo loc data for {$ address}", 'error' );159 self::log( "Error getting geo loc data for {$query}", 'error' ); 160 160 } 161 161 } -
category-maps/trunk/readme.txt
r3335316 r3359197 5 5 Requires at least: 5.6 6 6 Tested up to: 6.8 7 Stable tag: 1.4. 27 Stable tag: 1.4.3 8 8 Requires PHP: 7.0 9 9 License: GPLv3 … … 81 81 == Changelog == 82 82 83 = 1.4.3 = 84 * Undefined variable $address fixed 85 * Trying to access array offset on value of type bool fixed 86 83 87 = 1.4.2 = 84 88 * Variables and options escaped when echo'd … … 90 94 91 95 = 1.4.0 = 92 * Libraries updated .93 * Minor enhancements .96 * Libraries updated 97 * Minor enhancements
Note: See TracChangeset
for help on using the changeset viewer.