From ce26393ce992e3887e710c70214b88a6c4c6b877 Mon Sep 17 00:00:00 2001 From: Barbara Bothe Date: Tue, 24 Sep 2024 16:22:24 +0200 Subject: [PATCH] wpautop-Bug bei video in limit-width --- includes/PullDiv/PullDiv.php | 2 +- package.json | 2 +- rrze-elements.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/PullDiv/PullDiv.php b/includes/PullDiv/PullDiv.php index 1a8b7cf8..0e762efe 100644 --- a/includes/PullDiv/PullDiv.php +++ b/includes/PullDiv/PullDiv.php @@ -71,6 +71,6 @@ public function shortcodeLimitWidth($atts, $content = '', $tag = '') { $output = '
' . do_shortcode($content) . '
'; wp_enqueue_style('rrze-elements'); - return wpautop($output); + return wpautop($output, false); } } diff --git a/package.json b/package.json index bd51495a..2117c298 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rrze-elements", - "version": "1.29.0", + "version": "1.29.1", "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 a36b58f4..922f2acd 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.29.0 +Version: 1.29.1 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.29.0'; +const RRZE_ELEMENTS_VERSION = '1.29.1'; spl_autoload_register(function ($class) { $prefix = __NAMESPACE__;