diff --git a/admin_ticket_template_details.php b/admin_ticket_template_details.php
index b8280aed..57fd3a47 100644
--- a/admin_ticket_template_details.php
+++ b/admin_ticket_template_details.php
@@ -20,7 +20,7 @@ $sql_ticket_templates = mysqli_query($mysqli, "SELECT * FROM ticket_templates WH
$row = mysqli_fetch_array($sql_ticket_templates);
$ticket_template_name = nullable_htmlentities($row['ticket_template_name']);
-$ticket_template_description = nullable_htmlentities($row['ticket_template_description']);
+//$ticket_template_description = nullable_htmlentities($row['ticket_template_description']);
$ticket_template_subject = nullable_htmlentities($row['ticket_template_subject']);
$ticket_template_details = $purifier->purify($row['ticket_template_details']);
$ticket_template_created_at = nullable_htmlentities($row['ticket_template_created_at']);
@@ -54,7 +54,7 @@ $sql_task_templates = mysqli_query($mysqli, "SELECT * FROM task_templates WHERE
@@ -86,7 +86,7 @@ $sql_task_templates = mysqli_query($mysqli, "SELECT * FROM task_templates WHERE
-
+
@@ -99,7 +99,7 @@ $sql_task_templates = mysqli_query($mysqli, "SELECT * FROM task_templates WHERE
$task_id = intval($row['task_template_id']);
$task_name = nullable_htmlentities($row['task_template_name']);
$task_completion_estimate = intval($row['task_template_completion_estimate']);
- $task_description = nullable_htmlentities($row['task_template_description']);
+ //$task_description = nullable_htmlentities($row['task_template_description']);
?>
|
diff --git a/ajax/ajax_ticket_template_task_edit.php b/ajax/ajax_ticket_template_task_edit.php
index b7fe19f4..3038b877 100644
--- a/ajax/ajax_ticket_template_task_edit.php
+++ b/ajax/ajax_ticket_template_task_edit.php
@@ -10,7 +10,7 @@ $row = mysqli_fetch_array($sql);
$task_template_name = nullable_htmlentities($row['task_template_name']);
$task_template_order = intval($row['task_template_order']);
$task_template_completion_estimate = intval($row['task_template_completion_estimate']);
-$task_template_description = nullable_htmlentities($row['task_template_description']);
+//$task_template_description = nullable_htmlentities($row['task_template_description']);
// Generate the HTML form content using output buffering.
ob_start();
diff --git a/ticket.php b/ticket.php
index e59446bc..84e49946 100644
--- a/ticket.php
+++ b/ticket.php
@@ -930,7 +930,7 @@ if (isset($_GET['ticket_id'])) {
|