From cdb9b727b6b3e683c51c1f681d168349ef58b776 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Wed, 13 Mar 2024 18:00:21 +0100 Subject: [PATCH] wait #6795 @0.5 --- src/Links/ImageLink.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Links/ImageLink.php b/src/Links/ImageLink.php index 977f912..e765bd0 100644 --- a/src/Links/ImageLink.php +++ b/src/Links/ImageLink.php @@ -21,8 +21,8 @@ class ImageLink extends ContentLink { $res = parent::getAdditionnalContent(); $res .= ' data-image="' . $this->getImageUrl() . '"'; - if (isset($this->image_rollover)) { - $res .= ' data-rollover="' . $this->image_rollover . '"'; + if (isset($this->rollover)) { + $res .= ' data-rollover="' . $this->rollover . '"'; } return $res; } -- 2.39.5