Item14812: Parameters are not passed through
Priority: Normal
Current State: New
Released In: n/a
Target Release:
Problem:
RedirectPlugin does
not pass through parameters given in the redirect statement
%REDIRECT{"Someweb.SomeTopic?q=LDAP"}%
Symptom: The URL constructed by
RedirectPlugin looks like
.../Someweb/Sometopic?redirectedfrom=Oldweb.Oldtopic&?q=LDAP
(Wrong question mark in list of URL parameters)
Demo: See
RedirectPluginBugTest
Fix: In RedirectPlugin.pm line 129,
change
if ( $dest =~ /(\?.*)/ ) {
to
if ( $dest =~ /\?(.*)/ ) {
--
ChristophFuchs - 22 Jan 2019