From 48b6b104cedc5d6720adfc04956d3f2ceb787230 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Wed, 31 Aug 2022 11:49:48 +0200 Subject: [PATCH] wait #5408 @0.25 --- src/Compiler/CompilerInterface.php | 2 ++ src/Links/IFramePopupLink.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Compiler/CompilerInterface.php b/src/Compiler/CompilerInterface.php index 5f56b66..ee724e8 100644 --- a/src/Compiler/CompilerInterface.php +++ b/src/Compiler/CompilerInterface.php @@ -40,4 +40,6 @@ interface CompilerInterface public function getHeight(); public function virtualToPhysical($virtual); + + public function getPagePDFSource($page): string; } diff --git a/src/Links/IFramePopupLink.php b/src/Links/IFramePopupLink.php index 36ec39a..ad3dbf2 100644 --- a/src/Links/IFramePopupLink.php +++ b/src/Links/IFramePopupLink.php @@ -18,7 +18,7 @@ class IFramePopupLink extends NormalLink { $res = parent::getAdditionnalContent(); $markup = '
'; - $markup .= ''; + $markup .= ''; $markup .= '
'; return $res . ' data-iframe="' . rawurlencode($markup) . '" '; } -- 2.39.5