Changeset 2460038
- Timestamp:
- 01/21/2021 12:07:10 AM (5 years ago)
- Location:
- 12-step-meeting-list/trunk
- Files:
-
- 4 edited
-
12-step-meeting-list.php (modified) (2 diffs)
-
includes/database_updates.php (modified) (2 diffs)
-
includes/functions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
12-step-meeting-list/trunk/12-step-meeting-list.php
r2457623 r2460038 4 4 Plugin URI: https://wordpress.org/plugins/12-step-meeting-list/ 5 5 Description: Manage a list of recovery meetings 6 Version: 3.9. 56 Version: 3.9.6 7 7 Author: Code4Recovery 8 8 Author URI: https://github.com/code4recovery/12-step-meeting-list … … 24 24 25 25 if (!defined('TSML_VERSION')) { 26 define('TSML_VERSION', '3.9. 5');26 define('TSML_VERSION', '3.9.6'); 27 27 } 28 28 -
12-step-meeting-list/trunk/includes/database_updates.php
r2433701 r2460038 21 21 $entry['is_approximate_location'] = decide_if_location_approximate($address); 22 22 }; 23 $updated_address_cache[$ address] = $entry;23 $updated_address_cache[$key] = $entry; 24 24 }; 25 25 update_option('tsml_addresses', $updated_address_cache); … … 50 50 unset($entry['is_approximate_location']); 51 51 }; 52 $updated_address_cache[$ address] = $entry;52 $updated_address_cache[$key] = $entry; 53 53 }; 54 54 update_option('tsml_addresses', $updated_address_cache); -
12-step-meeting-list/trunk/includes/functions.php
r2457623 r2460038 583 583 //start list of options for geocoding request 584 584 $options = array( 585 'key' => 'AIzaSyC wIhOSfKs47DOe24JXM8nxfw1gC05BaiU',585 'key' => 'AIzaSyCXSu5YhUDJ92Di3oQiVvb10TXsXRMtI48', 586 586 'address' => $address, 587 587 'language' => $tsml_language, -
12-step-meeting-list/trunk/readme.txt
r2457623 r2460038 3 3 Requires at least: 3.2 4 4 Tested up to: 5.6.0 5 Stable tag: 3.9. 55 Stable tag: 3.9.6 6 6 7 7 This plugin helps twelve step recovery programs list their meetings. It standardizes addresses, and displays results in a searchable list and map. … … 206 206 == Changelog == 207 207 208 = 3.9.6 = 209 * Hot-fix to replace API key and correct additional geocode-related bug. 210 208 211 = 3.9.5 = 209 212 * Hot-fix to remove geocode error when adding new meeting.
Note: See TracChangeset
for help on using the changeset viewer.