[Rt-commit] rt branch, 3.9-trunk, updated. rt-3.9.4-114-gd9eb1d3
Thomas Sibley
trs at bestpractical.com
Mon Oct 4 16:43:01 EDT 2010
The branch, 3.9-trunk has been updated
via d9eb1d395dc24655bc7bcd94f54dee56931f3646 (commit)
from b1eb5ba33f9eb907a66b54c783affd5ac3951651 (commit)
Summary of changes:
share/html/Ticket/Elements/Tabs | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
- Log -----------------------------------------------------------------
commit d9eb1d395dc24655bc7bcd94f54dee56931f3646
Author: Thomas Sibley <trs at bestpractical.com>
Date: Mon Oct 4 16:23:59 2010 -0400
Swap the order of Comment and Reply at the top of ticket pages
This matches the order of transaction Reply and Comment links, and seems
more natural.
diff --git a/share/html/Ticket/Elements/Tabs b/share/html/Ticket/Elements/Tabs
index e1ed69d..828396c 100755
--- a/share/html/Ticket/Elements/Tabs
+++ b/share/html/Ticket/Elements/Tabs
@@ -188,7 +188,7 @@ if ($Ticket) {
$current_tab = "Ticket/Display.html?id=" . $id;
if ( $can{'ModifyTicket'} or $can{'ReplyToTicket'} ) {
- $actions->{'F'} = {
+ $actions->{'E'} = {
title => loc('Reply'),
path => "Ticket/Update.html?Action=Respond;id=" . $id,
};
@@ -258,7 +258,7 @@ if ($Ticket) {
}
if ( $can{'ModifyTicket'} || $can{'CommentOnTicket'}) {
- $actions->{'E'} = {
+ $actions->{'F'} = {
title => loc('Comment'),
path => "Ticket/Update.html?Action=Comment;id=" . $id,
};
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list