[Rt-commit] r14216 - rt/branches/3.999-DANGEROUS/share/html/Ticket/Elements

sunnavy at bestpractical.com sunnavy at bestpractical.com
Thu Jul 17 09:51:28 EDT 2008


Author: sunnavy
Date: Thu Jul 17 09:51:07 2008
New Revision: 14216

Modified:
   rt/branches/3.999-DANGEROUS/share/html/Ticket/Elements/Tabs

Log:
Action => action, Take => take...

Modified: rt/branches/3.999-DANGEROUS/share/html/Ticket/Elements/Tabs
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/html/Ticket/Elements/Tabs	(original)
+++ rt/branches/3.999-DANGEROUS/share/html/Ticket/Elements/Tabs	Thu Jul 17 09:51:07 2008
@@ -170,7 +170,7 @@
     {
         $actions->{'F'} = {
             title => _('Reply'),
-            path  => "Ticket/Update.html?Action=Respond&id=" . $id,
+            path  => "Ticket/Update.html?action=respond&id=" . $id,
         };
     }
 
@@ -178,7 +178,7 @@
         if ( $Ticket->status ne 'resolved' ) {
             $actions->{'G'} = {
                 path =>
-                    "Ticket/Update.html?Action=Comment&DefaultStatus=resolved&id="
+                    "Ticket/Update.html?action=comment&DefaultStatus=resolved&id="
                     . $id,
                 title => _('Resolve')
             };
@@ -194,14 +194,14 @@
     if ( $Ticket->current_user_has_right('OwnTicket') ) {
         if ( $Ticket->owner_obj->id == $RT::nobody->id ) {
             $actions->{'B'} = {
-                path  => "Ticket/Display.html?Action=Take&id=" . $id,
+                path  => "Ticket/Display.html?action=take&id=" . $id,
                 title => _('Take'),
                 }
                 if $can{'ModifyTicket'}
                     or $Ticket->current_user_has_right('TakeTicket');
         } elsif ( $Ticket->owner_obj->id != Jifty->web->current_user->id ) {
             $actions->{'C'} = {
-                path  => "Ticket/Display.html?Action=Steal&id=" . $id,
+                path  => "Ticket/Display.html?action=steal&id=" . $id,
                 title => _('Steal'),
                 }
                 if $can{'ModifyTicket'}
@@ -214,7 +214,7 @@
     {
         $actions->{'E'} = {
             title => _('Comment'),
-            path  => "Ticket/Update.html?Action=Comment&id=" . $id,
+            path  => "Ticket/Update.html?action=comment&id=" . $id,
         };
     }
 


More information about the Rt-commit mailing list