[Rt-commit] r5003 - in rt/branches/3.5-TESTING: .

kevinr at bestpractical.com kevinr at bestpractical.com
Mon Apr 10 22:24:51 EDT 2006


Author: kevinr
Date: Mon Apr 10 22:24:50 2006
New Revision: 5003

Modified:
   rt/branches/3.5-TESTING/   (props changed)
   rt/branches/3.5-TESTING/bin/rt.in

Log:
 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.5-TESTING/bin/rt.in
==============================================================================
--- rt/branches/3.5-TESTING/bin/rt.in	(original)
+++ rt/branches/3.5-TESTING/bin/rt.in	Mon Apr 10 22:24:50 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