From: Roland Haeder Date: Mon, 6 Apr 2015 23:00:57 +0000 (+0200) Subject: Also call initWebOutputInstance() here. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8609a988b78b7e039dbf74b95a05b2fcd6687a70;p=core.git Also call initWebOutputInstance() here. Signed-off-by: Roland Häder --- diff --git a/inc/classes/main/response/image/class_ImageResponse.php b/inc/classes/main/response/image/class_ImageResponse.php index 3cd50146..05d275d2 100644 --- a/inc/classes/main/response/image/class_ImageResponse.php +++ b/inc/classes/main/response/image/class_ImageResponse.php @@ -54,6 +54,9 @@ class ImageResponse extends BaseResponse implements Responseable { // Initialize the template engine here $responseInstance->initTemplateEngine($applicationInstance); + // Init web output instance + $responseInstance->initWebOutputInstance(); + // Return the prepared instance return $responseInstance; }