BUGFIX: a redirection with an external link that has more than one query string variables. Do not convert the link to html entities

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@77726 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Saophalkun Ponlu 2009-05-25 04:08:01 +00:00 committed by Sam Minnee
parent dcc273a8e3
commit b2f71a4d52

View File

@ -62,7 +62,7 @@ class RedirectorPage extends Page {
function redirectionLink() { function redirectionLink() {
if($this->RedirectionType == 'External') { if($this->RedirectionType == 'External') {
if($this->ExternalURL) { if($this->ExternalURL) {
return Convert::raw2att($this->ExternalURL); return $this->ExternalURL;
} }
} else { } else {