From 0c7d167642cf50d87c77ef573682d5e27c0dd8d5 Mon Sep 17 00:00:00 2001
From: Jared Hancock <jared@osticket.com>
Date: Thu, 28 Aug 2014 11:45:21 -0500
Subject: [PATCH] oops: Swapped last-message and original message

Turns out the canned response selections for the original message and the
last message were swapped.
---
 include/staff/ticket-view.inc.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/staff/ticket-view.inc.php b/include/staff/ticket-view.inc.php
index bfef5605e..a6805da52 100644
--- a/include/staff/ticket-view.inc.php
+++ b/include/staff/ticket-view.inc.php
@@ -509,8 +509,8 @@ $tcount+= $ticket->getNumNotes();
                 <td>
                     <select id="cannedResp" name="cannedResp">
                         <option value="0" selected="selected">Select a canned response</option>
-                        <option value='lastmessage'>Original Message</option>
-                        <option value='original'>Last Message</option>
+                        <option value='original'>Original Message</option>
+                        <option value='lastmessage'>Last Message</option>
                         <?php
                         if(($cannedResponses=Canned::responsesByDeptId($ticket->getDeptId()))) {
                             echo '<option value="0" disabled="disabled">
-- 
GitLab