From be4e7936aab3972904355f9195513d9b1af5fcda Mon Sep 17 00:00:00 2001 From: Barbara Bothe Date: Mon, 9 Sep 2024 11:43:04 +0200 Subject: [PATCH] wpautop-Fix bei Videos in Alert fixes #339 --- includes/Alert/Alert.php | 2 +- package.json | 2 +- rrze-elements.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/Alert/Alert.php b/includes/Alert/Alert.php index 748dc0f..0da41d9 100644 --- a/includes/Alert/Alert.php +++ b/includes/Alert/Alert.php @@ -72,6 +72,6 @@ public function shortcodeAlert($atts, $content = '') wp_enqueue_style('rrze-elements'); - return wpautop($output); + return wpautop($output, false); } } diff --git a/package.json b/package.json index 27d0188..77c1e53 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rrze-elements", - "version": "1.28.5", + "version": "1.28.6", "description": "RRZE Elements: Gestalterische Erweiterungen für Webauftritte.", "main": "rrze-elements.php", "textdomain": "rrze-elements", diff --git a/rrze-elements.php b/rrze-elements.php index 104bf29..e8eff83 100644 --- a/rrze-elements.php +++ b/rrze-elements.php @@ -4,7 +4,7 @@ Plugin Name: RRZE Elements Plugin URI: https://github.com/RRZE-Webteam/rrze-elements Description: Advanced design elements for WordPress websites. -Version: 1.28.5 +Version: 1.28.6 Author: RRZE Webteam Author URI: https://blogs.fau.de/webworking/ License: GNU General Public License v2 @@ -23,7 +23,7 @@ const RRZE_PHP_VERSION = '7.4'; const RRZE_WP_VERSION = '5.9'; -const RRZE_ELEMENTS_VERSION = '1.28.5'; +const RRZE_ELEMENTS_VERSION = '1.28.6'; spl_autoload_register(function ($class) { $prefix = __NAMESPACE__;