[Rt-commit] r5103 - in rt/branches/3.7-EXPERIMENTAL: .

ruz at bestpractical.com ruz at bestpractical.com
Tue Apr 25 09:28:10 EDT 2006


Author: ruz
Date: Tue Apr 25 09:28:08 2006
New Revision: 5103

Modified:
   rt/branches/3.7-EXPERIMENTAL/   (props changed)
   rt/branches/3.7-EXPERIMENTAL/bin/rt.in

Log:
 r2400 at cubic-pc (orig r5003):  kevinr | 2006-04-11 06:24:50 +0400
  r12013 at sad-girl-in-snow:  kevinr | 2006-04-10 20:45:06 -0400
  * Discovered that, when attempting to comment via the command-line tool, the
    RT instance thought it was being asked to find a ticket with an id of 
    'comment'.  Flipped the order of the terms in the URL we're requesting so 
    that they fit the canonical order.
 


Modified: rt/branches/3.7-EXPERIMENTAL/bin/rt.in
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL/bin/rt.in	(original)
+++ rt/branches/3.7-EXPERIMENTAL/bin/rt.in	Tue Apr 25 09:28:08 2006
@@ -674,7 +674,7 @@
     }
     $data{content} = $text;
 
-    my $r = submit("$REST/ticket/comment/$id", \%data);
+    my $r = submit("$REST/ticket/$id/comment", \%data);
     print $r->content;
 }
 


More information about the Rt-commit mailing list