Updated client portal ticket details and document detail to use prettyContent js function

This commit is contained in:
johnnyq
2023-09-26 14:28:36 -04:00
parent 51489c2420
commit 477e092b27
2 changed files with 31 additions and 26 deletions

View File

@@ -56,7 +56,7 @@ if (isset($_GET['id']) && intval($_GET['id'])) {
</h4>
</div>
<div class="card-body">
<div class="card-body prettyContent">
<h5><strong>Subject:</strong> <?php echo $ticket_subject ?></h5>
<hr>
<p>
@@ -161,7 +161,7 @@ if (isset($_GET['id']) && intval($_GET['id'])) {
</h3>
</div>
<div class="card-body">
<div class="card-body prettyContent">
<?php echo $ticket_reply; ?>
</div>
</div>
@@ -172,6 +172,8 @@ if (isset($_GET['id']) && intval($_GET['id'])) {
?>
<script src="../js/pretty_content.js"></script>
<?php
} else {
echo "Ticket ID not found!";
@@ -182,3 +184,4 @@ if (isset($_GET['id']) && intval($_GET['id'])) {
}
require_once("portal_footer.php");