From 17b569c5d4e7d45ac95b47436fce862957489ffe Mon Sep 17 00:00:00 2001
From: Michael <heluecht@pirati.ca>
Date: Wed, 7 Apr 2021 12:16:24 +0000
Subject: [PATCH] Remove empty lines arounf the horizontal ruler, no maximum
 height

---
 src/Content/Text/BBCode.php   | 6 +++++-
 view/theme/frio/css/style.css | 1 -
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php
index 437330ce72..d363389485 100644
--- a/src/Content/Text/BBCode.php
+++ b/src/Content/Text/BBCode.php
@@ -50,7 +50,7 @@ use Friendica\Util\XML;
 class BBCode
 {
 	// Update this value to the current date whenever changes are made to BBCode::convert
-	const VERSION = '2021-04-05';
+	const VERSION = '2021-04-07';
 
 	const INTERNAL = 0;
 	const API = 2;
@@ -1404,10 +1404,14 @@ class BBCode
 				$search = ["\n[th]", "[th]\n", " [th]", "\n[/th]", "[/th]\n", "[/th] ",
 					"\n[td]", "[td]\n", " [td]", "\n[/td]", "[/td]\n", "[/td] ",
 					"\n[tr]", "[tr]\n", " [tr]", "[tr] ", "\n[/tr]", "[/tr]\n", " [/tr]", "[/tr] ",
+					"\n[hr]", "[hr]\n", " [hr]", "[hr] ",
+					"\n[attachment ", " [attachment ", "\n[/attachment]", "[/attachment]\n", " [/attachment]", "[/attachment] ",
 					"[table]\n", "[table] ", " [table]", "\n[/table]", " [/table]", "[/table] "];
 				$replace = ["[th]", "[th]", "[th]", "[/th]", "[/th]", "[/th]",
 					"[td]", "[td]", "[td]", "[/td]", "[/td]", "[/td]",
 					"[tr]", "[tr]", "[tr]", "[tr]", "[/tr]", "[/tr]", "[/tr]", "[/tr]",
+					"[hr]", "[hr]", "[hr]", "[hr]",
+					"[attachment ", "[attachment ", "[/attachment]", "[/attachment]", "[/attachment]", "[/attachment]",
 					"[table]", "[table]", "[table]", "[/table]", "[/table]", "[/table]"];
 				do {
 					$oldtext = $text;
diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css
index 05fcd922e1..2d56d74f23 100644
--- a/view/theme/frio/css/style.css
+++ b/view/theme/frio/css/style.css
@@ -1801,7 +1801,6 @@ aside .panel-body {
 	word-break: break-word;
 }
 .wall-item-content img {
-	max-height: 480px;
 	object-fit: contain;
 }
 .wall-item-body > img,
-- 
2.39.5