diff --git a/bmlt-meeting-list.php b/bmlt-meeting-list.php index e8e7200..3d859c5 100644 --- a/bmlt-meeting-list.php +++ b/bmlt-meeting-list.php @@ -11,7 +11,7 @@ * Plugin Name: Bread * Plugin URI: https://bmlt.app * Description: Maintains and generates PDF Meeting Lists from BMLT. - * Version: 2.8.6 + * Version: 2.8.7 * Author: bmlt-enabled * Author URI: https://bmlt.app/ * License: GPL-2.0+ @@ -30,7 +30,7 @@ * Start at version 2.8.0 and use SemVer - https://semver.org * Rename this for your plugin and update it as you release new versions. */ -define('BREAD_VERSION', '2.8.0'); +define('BREAD_VERSION', '2.8.7'); /** * The code that runs during plugin activation. diff --git a/public/class-bread-meetingslist-structure.php b/public/class-bread-meetingslist-structure.php index 7af0fed..07c66c7 100644 --- a/public/class-bread-meetingslist-structure.php +++ b/public/class-bread-meetingslist-structure.php @@ -158,8 +158,8 @@ function __construct(Bread $bread, array $result_meetings, string $lang, int $in $meeting_sort = $this->options['meeting_sort']; if ($include_additional_list > 0) { switch ($this->options['additional_list_sort_order']) { - case 'meeting_name': - $meeting_sort = 'meeting_name'; + case 'name': + $meeting_sort = 'group'; $this->suppress_heading = true; break; case 'weekday_tinyint,start_time': diff --git a/readme.txt b/readme.txt index 55169c8..54ddf09 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Tags: meeting list, bmlt, narcotics anonymous, na Requires PHP: 8.1 Requires at least: 6.2 Tested up to: 6.7.1 -Stable tag: 2.8.6 +Stable tag: 2.8.7 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -55,6 +55,9 @@ Follow all these steps, keep in mind that once you start using bread, it's not g == Changelog == += 2.8.7 = +* Fixes in heading generation. + = 2.8.6 = * Performance Improvements.