Plugin Directory

Changeset 2557986


Ignore:
Timestamp:
07/03/2021 12:19:09 AM (5 years ago)
Author:
tech2serve
Message:

3.11.1 Fix PHP warnings

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

Legend:

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

    r2555515 r2557986  
    44Plugin URI: https://wordpress.org/plugins/12-step-meeting-list/
    55Description: Manage a list of recovery meetings
    6 Version: 3.11.0
     6Version: 3.11.1
    77Author: Code4Recovery
    88Author URI: https://github.com/code4recovery/12-step-meeting-list
     
    2828
    2929if (!defined('TSML_VERSION')) {
    30     define('TSML_VERSION', '3.11.0');
     30    define('TSML_VERSION', '3.11.1');
    3131}
    3232
  • 12-step-meeting-list/trunk/includes/functions.php

    r2555515 r2557986  
    11281128
    11291129        // Remove TC when online only meeting has approximate address
    1130         if ($meetings[$i]['attendance_option'] == 'online' && tsml_geocode($meetings[$i]['formatted_address'])['approximate'] == 'yes') {
     1130        if (!empty($meetings[$i]['types']) && $meetings[$i]['attendance_option'] == 'online' && tsml_geocode($meetings[$i]['formatted_address'])['approximate'] == 'yes') {
    11311131            $meetings[$i]['types'] = array_values(array_diff($meetings[$i]['types'], array('TC')));
    11321132        }
  • 12-step-meeting-list/trunk/includes/tcpdf/include/tcpdf_fonts.php

    r1863738 r2557986  
    16651665     */
    16661666    public static function unichr($c, $unicode=true) {
     1667        $c = intval($c);
    16671668        if (!$unicode) {
    16681669            return chr($c);
  • 12-step-meeting-list/trunk/readme.txt

    r2555515 r2557986  
    213213== Changelog ==
    214214
     215= 3.11.1 =
     216* Fix PHP warnings.
     217
    215218= 3.11.0 =
    216219* Add attendance option support, and improve online meeting support.
Note: See TracChangeset for help on using the changeset viewer.