Changeset 2557986
- Timestamp:
- 07/03/2021 12:19:09 AM (5 years ago)
- Location:
- 12-step-meeting-list/trunk
- Files:
-
- 4 edited
-
12-step-meeting-list.php (modified) (2 diffs)
-
includes/functions.php (modified) (1 diff)
-
includes/tcpdf/include/tcpdf_fonts.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
12-step-meeting-list/trunk/12-step-meeting-list.php
r2555515 r2557986 4 4 Plugin URI: https://wordpress.org/plugins/12-step-meeting-list/ 5 5 Description: Manage a list of recovery meetings 6 Version: 3.11. 06 Version: 3.11.1 7 7 Author: Code4Recovery 8 8 Author URI: https://github.com/code4recovery/12-step-meeting-list … … 28 28 29 29 if (!defined('TSML_VERSION')) { 30 define('TSML_VERSION', '3.11. 0');30 define('TSML_VERSION', '3.11.1'); 31 31 } 32 32 -
12-step-meeting-list/trunk/includes/functions.php
r2555515 r2557986 1128 1128 1129 1129 // 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') { 1131 1131 $meetings[$i]['types'] = array_values(array_diff($meetings[$i]['types'], array('TC'))); 1132 1132 } -
12-step-meeting-list/trunk/includes/tcpdf/include/tcpdf_fonts.php
r1863738 r2557986 1665 1665 */ 1666 1666 public static function unichr($c, $unicode=true) { 1667 $c = intval($c); 1667 1668 if (!$unicode) { 1668 1669 return chr($c); -
12-step-meeting-list/trunk/readme.txt
r2555515 r2557986 213 213 == Changelog == 214 214 215 = 3.11.1 = 216 * Fix PHP warnings. 217 215 218 = 3.11.0 = 216 219 * Add attendance option support, and improve online meeting support.
Note: See TracChangeset
for help on using the changeset viewer.