Skip to content
Snippets Groups Projects
Commit 5152755b authored by JediKev's avatar JediKev
Browse files

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.
parent d2ef3b1f
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,7 @@ require(CLIENTINC_DIR.'header.inc.php'); ...@@ -25,7 +25,7 @@ require(CLIENTINC_DIR.'header.inc.php');
<div id="landing_page"> <div id="landing_page">
<?php <?php
if(($page=$cfg->getOfflinePage())) { if(($page=$cfg->getOfflinePage())) {
echo $page->getBody(); echo $page->getBodyWithImages();
} else { } else {
echo '<h1>'.__('Support Ticket System Offline').'</h1>'; echo '<h1>'.__('Support Ticket System Offline').'</h1>';
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment