Skip to content

Commit

Permalink
Merge branch '1.0' into HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanjeev Papnoi committed Jul 21, 2020
2 parents b9a05a1 + 3a8eb93 commit 56ae23f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG-1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ CHANGELOG for 1.0.x

This changelog references any relevant changes introduced in 1.0 minor versions.

* 1.0.8 (2020-07-21)
* **Issue #102:** Footer cookie link issue on mobile.
* **Issue #101:** Missed mobile menu to login, Missed operator three dots menù in a ticket.
* **Issue #24:** Customer can view other's customer's ticket just by passing ticket id in URL

* 1.0.7 (2020-05-26)
* **Misc. Updates:**
* Added Not found exception in different part of bundle.
Expand Down
2 changes: 1 addition & 1 deletion Controller/Ticket.php
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ public function ticketView($id, Request $request)
$user = $this->get('user.service')->getSessionUser();
$ticket = $entityManager->getRepository(TicketEntity::class)->findOneBy(['id' => $id]);

if (empty($ticket)) {
if (empty($ticket) || ( (!empty($user)) && $user->getId() != $ticket->getCustomer()->getId()) ) {
throw new NotFoundHttpException('Page Not Found!');
}

Expand Down
9 changes: 7 additions & 2 deletions Resources/public/css/knowledgebase.css
Original file line number Diff line number Diff line change
Expand Up @@ -1212,6 +1212,12 @@ span.uv-sorting:hover.ascend {
padding: 20px;
margin: 0px auto;
}
.uv-pop-up-wide {
margin-left: -140px;
width: 700px;
max-width: 80%;
margin-right: -191px;
}
.uv-box-server-error .uv-box-server-error-lt {
width: 100%;
display: block;
Expand Down Expand Up @@ -1540,9 +1546,8 @@ p {
}
.uv-header .uv-header-rt .uv-hamburger svg {
display: block;
vertical-align: middle;
padding: 27px 0px;
cursor: pointer;
margin-top: 25px;
}
.uv-header .uv-header-rt .uv-hamburger svg path {
fill: #7C70F4;
Expand Down
2 changes: 1 addition & 1 deletion Resources/views/Knowledgebase/ticketView.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@
sfTinyMce.init({
height: '250px',
selector : '.uv-ticket-reply textarea',
images_upload_url: "{{ path('helpdesk_customer_upload_thread_encoded_image', {ticketId: app.request.get('id')}) }}",
images_upload_url: "",
setup: function(editor) {
}
});
Expand Down

0 comments on commit 56ae23f

Please sign in to comment.