Thanks for the tip @[deleted] Figured it out. Located in the include/client/view.inc.php file, directly under the opening <?php tag should be the code given by @[deleted]:if(isset($_GET)) { if(($_GET == 'close')) { $ticket->setStatus(3); // equivalent to status = closed } else {echo "Not possible";} }I removed the echo "<script> alert('Status Changed');</script>"; that @[deleted] used.I didn't, nor did our users, like the pop up box stating Status Changed.Then in the same file, scroll down a bit just above the </h1> closing tag. You'll see the code for the 'Edit' button. Immediately below that Edit code, yet above the exisitng <?php } ?> tag, paste this code:
<a class="action-button pull-right" href="tickets.php?id=<?php echo $ticket->getId(); ?>&action=close"> <i class="icon-remove-circle"></i> Close Ticket</a>This code will put a close button next to the Edit button in the same font and format and even put the small circle with an X icon next to the "Close Ticket" text.I hope this helps someone else looking for this little requested feature. This has been tested and works in both 1.9.4 and 1.9.5.