Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM wordpress:6.9.0-php8.2-apache
FROM wordpress:6.9.4-php8.2-apache

RUN apt-get update && \
apt-get install -y --no-install-recommends ssl-cert && \
Expand Down
6 changes: 6 additions & 0 deletions admin/class-bread-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -269,12 +269,18 @@ function pwsix_process_settings_export()
function download_settings()
{
if ($this->bread->exportingMeetingList()) {
if (!current_user_can('manage_options')) {
return;
}
$this->download_settings_inner();
}
}
function download_mpdf_log()
{
if ($this->bread->exportingLogFile()) {
if (!current_user_can('manage_options')) {
return;
}
$this->download_log_file();
}
}
Expand Down
4 changes: 2 additions & 2 deletions bmlt-meeting-list.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: Bread
* Plugin URI: https://bmlt.app
* Description: Maintains and generates PDF Meeting Lists from BMLT.
* Version: 2.9.12
* Version: 2.9.13
* Author: bmlt-enabled
* Author URI: https://bmlt.app/
* License: GPL-2.0+
Expand All @@ -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.9.12');
define('BREAD_VERSION', '2.9.13');

/**
* The code that runs during plugin activation.
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: meeting list, bmlt, narcotics anonymous, na
Requires PHP: 8.1
Requires at least: 6.2
Tested up to: 6.9
Stable tag: 2.9.12
Stable tag: 2.9.13

License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -55,6 +55,9 @@ Follow all these steps, keep in mind that once you start using bread, it's not g

== Changelog ==

= 2.9.13 =
* Security: Require `manage_options` capability to export plugin settings and download mPDF log files (CVE-2026-4792)

= 2.9.12 =
* Cleaned up commas after blank fields
* Updated mPDF
Expand Down
Loading