From ca436ca65828a7e554e799b0aa208ed6d8bb2b16 Mon Sep 17 00:00:00 2001 From: Alexandre Delaunay Date: Wed, 29 Jul 2015 16:09:47 +0200 Subject: [PATCH] see empty solution if solutiontypes_id is not empty; see #2 --- inc/ticket.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/inc/ticket.class.php b/inc/ticket.class.php index 3d983d30df5..736bbb8012f 100644 --- a/inc/ticket.class.php +++ b/inc/ticket.class.php @@ -6091,7 +6091,8 @@ function getTimelineItems() { } //add existing solution - if (!empty($this->fields['solution'])) { + if (!empty($this->fields['solution']) + || !empty($this->fields['solutiontypes_id'])) { $users_id = 0; $solution_date = $this->fields['solvedate'];