Skip Menu |

This queue is for tickets about the RT-View-Tree CPAN distribution.

Report information
The Basics
Id: 13257
Status: resolved
Priority: 0/
Queue: RT-View-Tree

People
Owner: Nobody in particular
Requestors: mikko.lipasti [...] polarcom.fi
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.2
Fixed in: (no value)



Subject: Form in Tree View page has wrong action href
RT-View-Tree-1.2 has a simple bug in html/Search/Tree.html The form in the bottom of the Tree View page points to /Search/Tree.html which is broken when $RT::WebPath ne '' The attached patch fixes this.
diff -ur RT-View-Tree-1.2.orig/html/Search/Tree.html RT-View-Tree-1.2/html/Search/Tree.html --- RT-View-Tree-1.2.orig/html/Search/Tree.html 2005-03-24 04:02:26.000000000 +0200 +++ RT-View-Tree-1.2/html/Search/Tree.html 2005-06-15 14:25:09.969868264 +0300 @@ -192,7 +192,7 @@ </%perl> </table> <hr> -<form method="get" action="/Search/Tree.html"> +<form method="get" action="<%$RT::WebPath%>/Search/Tree.html"> <input type="hidden" name="Query" value="<%$Query%>"> <input type="hidden" name="Format" value="<%$Format%>"> <& /Elements/TitleBoxStart, title => loc('Display options') &> Only in RT-View-Tree-1.2/html/Search: Tree.html~
Date: Wed, 15 Jun 2005 14:41:39 -0400
From: jesse <jesse [...] fsck.com>
To: Guest via RT <bug-RT-View-Tree [...] rt.cpan.org>
CC: undisclosed-recipients: ;
Subject: Re: [cpan #13257] Form in Tree View page has wrong action href
RT-Send-Cc:
Thanks. Fixed for 1.3. On Wed, Jun 15, 2005 at 07:30:27AM -0400, Guest via RT wrote: Show quoted text
> > This message about RT-View-Tree was sent to you by guest <> via rt.cpan.org > > Full context and any attached attachments can be found at: > <URL: https://rt.cpan.org/Ticket/Display.html?id=13257 > > > RT-View-Tree-1.2 has a simple bug in html/Search/Tree.html > > The form in the bottom of the Tree View page points to /Search/Tree.html which is broken when $RT::WebPath ne '' > > The attached patch fixes this. >
--