From 63abfbfe87bd58e6f65ce331c55dc7714d8f9f4d Mon Sep 17 00:00:00 2001 From: Ilia Ross Date: Wed, 23 Jul 2025 23:44:36 +0300 Subject: [PATCH] Fix not to add a new line to the content --- ui-lib.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-lib.pl b/ui-lib.pl index a7cb17541..36488827b 100755 --- a/ui-lib.pl +++ b/ui-lib.pl @@ -3410,7 +3410,7 @@ sub ui_tag_content return theme_ui_tag_content(@_) if (defined(&theme_ui_tag_content)); my ($content) = @_; my $rv; -$rv = $content."\n" if (defined($content)); +$rv = $content if (defined($content)); return $rv; }