From 5152755b701d037b683a74dc00d48c24729c103b Mon Sep 17 00:00:00 2001
From: JediKev <kevin@enhancesoft.com>
Date: Mon, 3 Jul 2017 13:54:41 -0500
Subject: [PATCH] pages: Offline Page Images

This addresses issue #3869 where images in the Offline Page are not
showing. The page was calling the `getBody()` method which does not
include attachments properly. This updates the method to
`getBodyWithImages()` which includes attachments.
---
 offline.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/offline.php b/offline.php
index 0e284a858..20d9b46ff 100644
--- a/offline.php
+++ b/offline.php
@@ -25,7 +25,7 @@ require(CLIENTINC_DIR.'header.inc.php');
 <div id="landing_page">
 <?php
 if(($page=$cfg->getOfflinePage())) {
-    echo $page->getBody();
+    echo $page->getBodyWithImages();
 } else {
     echo '<h1>'.__('Support Ticket System Offline').'</h1>';
 }
-- 
GitLab