diff options
author | ivan <ivan> | 2010-06-30 06:52:26 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-06-30 06:52:26 +0000 |
commit | a2d4e67daf5dedaf982f5809a7e9108d42e481fe (patch) | |
tree | 4ba27a7aca9b87d0553967083537461bc2f58e67 /rt/share/html/Ticket | |
parent | 75620ea5602c4735869c71aef24cba723e44ac16 (diff) |
fix another case of rt/rt/, urg
Diffstat (limited to 'rt/share/html/Ticket')
-rw-r--r-- | rt/share/html/Ticket/Graphs/index.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rt/share/html/Ticket/Graphs/index.html b/rt/share/html/Ticket/Graphs/index.html index e23737c8e..211d3a0cb 100644 --- a/rt/share/html/Ticket/Graphs/index.html +++ b/rt/share/html/Ticket/Graphs/index.html @@ -56,7 +56,9 @@ <& Elements/ShowGraph, %ARGS, Ticket => $ticket &> -<form action="<% RT->Config->Get('WebPath') . $m->request_comp->path %>"> +% my $path = $m->request_comp->path; +% $path =~ s(^/rt)(); #hacky, dunno why this happens +<form action="<% RT->Config->Get('WebPath') . $path %>"> <input type="hidden" class="hidden" name="id" value="<% $id %>" /> <& Elements/EditGraphProperties, %ARGS, Ticket => $ticket &> |