From 182a3a4663571e05d341ee7a44cc447877f2cfb9 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sat, 7 Oct 2023 05:18:33 -0400 Subject: [PATCH] Fix wrong template variable name when using content/image/single_with_height_allocation.tpl --- src/Content/Image.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Content/Image.php b/src/Content/Image.php index cc2fd5122..6adfa9dd7 100644 --- a/src/Content/Image.php +++ b/src/Content/Image.php @@ -39,7 +39,7 @@ class Image $media = Renderer::replaceMacros(Renderer::getMarkupTemplate('content/image/single_with_height_allocation.tpl'), [ '$image' => $PostMediaImages[0], '$allocated_height' => $PostMediaImages[0]->getAllocatedHeight(), - '$allocated_max_width' => ($PostMediaImages[0]->previewWidth ?? $PostMediaImages[0]->width) . 'px', + '$allocated_width' => ($PostMediaImages[0]->previewWidth ?? $PostMediaImages[0]->width) . 'px', ]); } } else {