MythicalLTD / MythicalDash

Open-Source Client Area for Pterodactyl
https://mythicalltd.github.io/MythicalDash/
MIT License
62 stars 14 forks source link

Tickets issue with backslash in query #99

Closed theantihero closed 9 months ago

theantihero commented 9 months ago

There was some issue with viewing the view/tickets/list.php

FROM

$result = $conn->query($tickets_query);
$totalResult = $conn->query($totalTicketsQuery);

TO

$result = $conn->query(stripslashes($tickets_query));
$totalResult = $conn->query(stripslashes($totalTicketsQuery));

fixed it for me, not sure if anyone else came across this issue.

NaysKutzu commented 9 months ago

Will take a look into it

NaysKutzu commented 9 months ago

Done