From 41fd72eafbd774f42089a69b19a6a64329533817 Mon Sep 17 00:00:00 2001 From: Peter Rotich <peter@osticket.com> Date: Mon, 15 Oct 2012 13:15:00 -0400 Subject: [PATCH] Fix getSLA bug --- include/class.ticket.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/class.ticket.php b/include/class.ticket.php index 71f8dc765..d22bd3b95 100644 --- a/include/class.ticket.php +++ b/include/class.ticket.php @@ -450,7 +450,7 @@ class Ticket { function getSLA() { if(!$this->sla && $this->getSLAId()) - $this->sla = SLA::lookup($this->getSLAId); + $this->sla = SLA::lookup($this->getSLAId()); return $this->sla; } -- GitLab