From e94b044d3a641474c8eaa603c8cb2ad385485f9f Mon Sep 17 00:00:00 2001 From: Ferdinand Kuhl Date: Thu, 27 Jun 2024 21:21:19 +0200 Subject: [PATCH] this time really staying inside length --- Classes/Domain/Model/AssetAttribute.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/Domain/Model/AssetAttribute.php b/Classes/Domain/Model/AssetAttribute.php index 395941e..d6a0328 100644 --- a/Classes/Domain/Model/AssetAttribute.php +++ b/Classes/Domain/Model/AssetAttribute.php @@ -62,7 +62,7 @@ class AssetAttribute $this->value = $value; } if (!$urlValue) { - $urlValue = $this->value; + $urlValue = \mb_substr($this->value, 0, 250); } $this->urlValue = $urlValue; }