Changeset 2457623
- Timestamp:
- 01/16/2021 04:26:17 PM (5 years ago)
- Location:
- 12-step-meeting-list/trunk
- Files:
-
- 3 edited
-
12-step-meeting-list.php (modified) (2 diffs)
-
includes/functions.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
12-step-meeting-list/trunk/12-step-meeting-list.php
r2433701 r2457623 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. 46 Version: 3.9.5 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. 4');26 define('TSML_VERSION', '3.9.5'); 27 27 } 28 28 -
12-step-meeting-list/trunk/includes/functions.php
r2433701 r2457623 689 689 //used: single-meetings.php, single-locations.php 690 690 function tsml_ensure_location_approximate_set($meeting_location_info) { 691 if (empty($meeting_location_info->approximate) ) {691 if (empty($meeting_location_info->approximate) && !empty($meeting_location_info->formatted_address)) { 692 692 $geocoded = tsml_geocode($meeting_location_info->formatted_address); 693 693 $meeting_location_info->approximate = $geocoded['approximate']; … … 977 977 } 978 978 } 979 sort($meeting->types_expanded); 980 $meeting = tsml_ensure_location_approximate_set($meeting); // Can eventually remove this when <3.9 TSMLs no longer used. 979 sort($meeting->types_expanded); 980 981 if (!empty($meeting->post_title)) $meeting = tsml_ensure_location_approximate_set($meeting); // Can eventually remove this when <3.9 TSMLs no longer used. 981 982 982 983 return $meeting; -
12-step-meeting-list/trunk/readme.txt
r2433701 r2457623 3 3 Requires at least: 3.2 4 4 Tested up to: 5.6.0 5 Stable tag: 3.9. 45 Stable tag: 3.9.5 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.5 = 209 * Hot-fix to remove geocode error when adding new meeting. 210 208 211 = 3.9.4 = 209 212 * Fix bugs associated with approximate values/display of directions dialogs.
Note: See TracChangeset
for help on using the changeset viewer.