Bug fix patches

- Added language translation words in langusge files
- Updated bugsnage API key
- Fixed PHP7.2 issues in organization view and ticket reply reading
This commit is contained in:
Manish Verma
2018-09-05 16:35:13 +05:30
committed by Manish Verma
parent 334a7a8299
commit b288ec57a3
4 changed files with 14 additions and 6 deletions

View File

@@ -904,7 +904,7 @@ class TicketController extends Controller
$find_number = Tickets::where('ticket_number', '=', $new_subject)->first();
$thread_body = explode('---Reply above this line---', $body);
$body = $thread_body[0];
if (count($find_number) > 0) {
if ($find_number->count() > 0) {
$id = $find_number->id;
$ticket_number = $find_number->ticket_number;
if ($find_number->status > 1) {