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');
<div id="landing_page">
<?php
if(($page=$cfg->getOfflinePage())) {
echo $page->getBody();
echo $page->getBodyWithImages();
} else {
echo '<h1>'.__('Support Ticket System Offline').'</h1>';
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment