diff options
author | ivan <ivan> | 2010-08-15 00:44:55 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-08-15 00:44:55 +0000 |
commit | 7515782ca6e453f2e4c9a52c62429e73ce047247 (patch) | |
tree | 2f71865e11884fec135ac9fb98d336cb02d9cbe9 /rt/share/html/Elements/ColumnMap | |
parent | 7f89738f0f4740efaca00b06034e3a7d86c49ea5 (diff) |
address root cause of rt/rt links and remove the workarounds, RT#9280
Diffstat (limited to 'rt/share/html/Elements/ColumnMap')
-rw-r--r-- | rt/share/html/Elements/ColumnMap | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/rt/share/html/Elements/ColumnMap b/rt/share/html/Elements/ColumnMap index 6a1c23779..a1475a99d 100644 --- a/rt/share/html/Elements/ColumnMap +++ b/rt/share/html/Elements/ColumnMap @@ -157,12 +157,7 @@ my $COLUMN_MAP = { } qw(WebPath WebBaseURL WebURL)), WebRequestPath => { value => sub { substr( $m->request_path, 1 ) } }, - #WebRequestPathDir => { value => sub { substr( $m->request_comp->dir_path, 1 ) } }, - WebRequestPathDir => { value => sub { - my $wrpd = substr( $m->request_comp->dir_path, 1 ); - $wrpd =~ s(^rt/)(); #hacky, dunno why this happens - $wrpd; - } }, + WebRequestPathDir => { value => sub { substr( $m->request_comp->dir_path, 1 ) } }, }; $COLUMN_MAP->{'CF'} = $COLUMN_MAP->{'CustomField'}; |