Plugin Directory

Changeset 2460038


Ignore:
Timestamp:
01/21/2021 12:07:10 AM (5 years ago)
Author:
tech2serve
Message:

3.9.6 Host-fix 2 for geocoding issue

Location:
12-step-meeting-list/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • 12-step-meeting-list/trunk/12-step-meeting-list.php

    r2457623 r2460038  
    44Plugin URI: https://wordpress.org/plugins/12-step-meeting-list/
    55Description: Manage a list of recovery meetings
    6 Version: 3.9.5
     6Version: 3.9.6
    77Author: Code4Recovery
    88Author URI: https://github.com/code4recovery/12-step-meeting-list
     
    2424
    2525if (!defined('TSML_VERSION')) {
    26     define('TSML_VERSION', '3.9.5');
     26    define('TSML_VERSION', '3.9.6');
    2727}
    2828
  • 12-step-meeting-list/trunk/includes/database_updates.php

    r2433701 r2460038  
    2121          $entry['is_approximate_location'] = decide_if_location_approximate($address);                 
    2222        };
    23         $updated_address_cache[$address] = $entry;
     23        $updated_address_cache[$key] = $entry;
    2424      };
    2525      update_option('tsml_addresses', $updated_address_cache);
     
    5050          unset($entry['is_approximate_location']);
    5151        };
    52         $updated_address_cache[$address] = $entry;
     52        $updated_address_cache[$key] = $entry;
    5353      };
    5454      update_option('tsml_addresses', $updated_address_cache);
  • 12-step-meeting-list/trunk/includes/functions.php

    r2457623 r2460038  
    583583    //start list of options for geocoding request
    584584    $options = array(
    585         'key' => 'AIzaSyCwIhOSfKs47DOe24JXM8nxfw1gC05BaiU',
     585        'key' => 'AIzaSyCXSu5YhUDJ92Di3oQiVvb10TXsXRMtI48',
    586586        'address' => $address,
    587587        'language' => $tsml_language,
  • 12-step-meeting-list/trunk/readme.txt

    r2457623 r2460038  
    33Requires at least: 3.2
    44Tested up to: 5.6.0
    5 Stable tag: 3.9.5
     5Stable tag: 3.9.6
    66
    77This plugin helps twelve step recovery programs list their meetings. It standardizes addresses, and displays results in a searchable list and map.
     
    206206== Changelog ==
    207207
     208= 3.9.6 =
     209* Hot-fix to replace API key and correct additional geocode-related bug.
     210 
    208211= 3.9.5 =
    209212* Hot-fix to remove geocode error when adding new meeting.
Note: See TracChangeset for help on using the changeset viewer.