Skip to content

Commit

Permalink
fix syntax error on php 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joshreisner committed Dec 22, 2024
1 parent e650e34 commit 233cecf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions 12-step-meeting-list.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Description: Manage a list of recovery meetings
* Version: 3.16.9
* Version: 3.16.10
* Requires PHP: 5.6
* Author: Code for Recovery
* Author URI: https://github.com/code4recovery/12-step-meeting-list
Expand All @@ -31,7 +31,7 @@
define('TSML_MEETINGS_PERMISSION', 'edit_posts');
define('TSML_PATH', plugin_dir_path(__FILE__));
define('TSML_SETTINGS_PERMISSION', 'manage_options');
define('TSML_VERSION', '3.16.9');
define('TSML_VERSION', '3.16.10');

// include these files first
include TSML_PATH . '/includes/filter_meetings.php';
Expand Down
2 changes: 1 addition & 1 deletion includes/admin_meeting.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class="checkboxes<?php if (!empty($tsml_types_in_use) && count($tsml_types_in_us
sprintf(
// translators: %s is the list of supported conference providers
__('If this meeting has videoconference information, please enter the full valid URL here. Currently supported providers: %s. If other details are required, such as a password, they can be included in the Notes field above, but a ‘one tap’ experience is ideal. Passwords can be appended to phone numbers using this format <code>+12125551212,,123456789#,,#,,444444#</code>', '12-step-meeting-list'),
implode(', ', tsml_conference_providers()),
implode(', ', tsml_conference_providers())
),
TSML_ALLOWED_HTML
) ?>
Expand Down
7 changes: 5 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
Contributors: code4recovery
Donate link: https://code4recovery.org/contribute
Requires at least: 3.2
Requires PHP: 5.6
Requires PHP: 7.2
Tested up to: 6.7
Stable tag: 3.16.9
Stable tag: 3.16.10
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -301,6 +301,9 @@ Yes, you will need to know the key name of the field. Then include an array in y

== Changelog ==

= 3.16.10 =
* Fix syntax error on PHP 7.2 [more info](https://github.com/code4recovery/12-step-meeting-list/discussions/1598)

= 3.16.9 =
* Fix custom types [more info](https://github.com/code4recovery/12-step-meeting-list/issues/1595)
* Fix address not displaying on meeting detail [more info](https://github.com/code4recovery/12-step-meeting-list/issues/1597)
Expand Down

0 comments on commit 233cecf

Please sign in to comment.