From 1995c6f22feb3c94a2dd6087db3f484236414189 Mon Sep 17 00:00:00 2001 From: Manish Verma Date: Wed, 25 Jan 2017 13:36:17 +0530 Subject: [PATCH] v1.9.3 updates --- config/app.php | 2 +- release-notes.txt | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/config/app.php b/config/app.php index 185017670..a11d70d74 100644 --- a/config/app.php +++ b/config/app.php @@ -33,7 +33,7 @@ return [ | This tells about aplication current version. | */ - 'version' => 'Community 1.9.2', + 'version' => 'Community 1.9.3', /* |-------------------------------------------------------------------------- | Application Name diff --git a/release-notes.txt b/release-notes.txt index 76cb29aad..787eaaced 100644 --- a/release-notes.txt +++ b/release-notes.txt @@ -1,3 +1,24 @@ + +|===================================================== +| v1.9.3 (hot fix) +|===================================================== +## Bug fixed +#344 +System is storing the attachment in chosen storage medium(DB/file system) but not showing the attachments in ticket detail page or ticket timeline page. + +## How to Fix +See this link https://github.com/ladybirdweb/faveo-helpdesk/commit/f4d71f3d743123d15558ab120af74499298a1891 for the details of changes made for bug fix. + +Or + +Open this file: Root_directory of faveo/app/Model/helpdesk/Ticket/Ticket_attachments.php +search and replace +`if ($this->poster == 'ATTACHMENT')` +with +`if ($this->poster == 'ATTACHMENT' || $this->poster == 'attachment')` +at line **49** + + |====================================================== |v1.9.2 |======================================================