
alexmv at bestpractical
Feb 23, 2006, 8:32 PM
Post #1 of 1
(328 views)
Permalink
|
|
r4578 - in rtir/branches/1.9-EXPERIMENTAL: html/RTIR/Incident
|
|
Author: alexmv Date: Thu Feb 23 23:32:24 2006 New Revision: 4578 Modified: rtir/branches/1.9-EXPERIMENTAL/ (props changed) rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/Create.html rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/Edit.html Log: r9288 [at] zoq-fot-pi: chmrr | 2006-02-23 23:31:37 -0500 * Child deps work correctly on create * Fix compile error in incident edit Modified: rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/Create.html ============================================================================== --- rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/Create.html (original) +++ rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/Create.html Thu Feb 23 23:32:24 2006 @@ -43,7 +43,6 @@ <input type="hidden" name="id" value="new" /> <input type="hidden" name="Queue" value="<% $QueueObj->Name || '' %>" /> <input type="hidden" name="Status" value="<% $ARGS{'Status'} || 'open' %>" /> -<input type="hidden" name="Child" value="<% $ARGS{'Child'} || '' %>" /> <input type="hidden" name="new-MemberOf" value="<% $ARGS{'new-MemberOf'} || '' %>" /> <input type="hidden" name="MemberOf-new" value="<% $ARGS{'MemberOf-new'} || '' %>" /> <a name="top"> @@ -187,6 +186,7 @@ } elsif ($Child) { $link = LoadTicket($Child); $label = loc("Link with"); + $ARGS{'MemberOf-new'} = $Child; } my $QueueObj = new RT::Queue( $session{'CurrentUser'} ); Modified: rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/Edit.html ============================================================================== --- rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/Edit.html (original) +++ rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/Edit.html Thu Feb 23 23:32:24 2006 @@ -135,6 +135,8 @@ <%INIT> +my @results; + my $Ticket = LoadTicket($id); my $CanRespond = 0; _______________________________________________ Rt-commit mailing list Rt-commit [at] lists http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-commit
|