From 6c22724c7e7d8ed7e617ef0f6c7e9ce78d163b11 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Tue, 20 Aug 2024 16:40:34 +0200 Subject: [PATCH] wait #7047 @1 --- app/Fluidbook/Compiler/Links.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Fluidbook/Compiler/Links.php b/app/Fluidbook/Compiler/Links.php index 8d27c3755..12eeffa16 100644 --- a/app/Fluidbook/Compiler/Links.php +++ b/app/Fluidbook/Compiler/Links.php @@ -173,7 +173,7 @@ trait Links $dupData['image'] = ''; $dupData['animation'] = ''; $dupData['to'] = self::_SVGCleanAsset($linkData['image']); - if ($dupData['image_rollover'] != 'none' && !stristr($dupData['image_rollover'], '=')) { + if (isset($dupData['image_rollover']) && $dupData['image_rollover'] != 'none' && !stristr($dupData['image_rollover'], '=')) { $dupData['rollover'] = $dupData['image_rollover']; } $dupData['image_rollover'] = ''; -- 2.39.5