Skip to content

Commit

Permalink
BUGFIX: a redirection with an external link that has more than one qu…
Browse files Browse the repository at this point in the history
…ery 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
  • Loading branch information
Saophalkun Ponlu authored and Sam Minnee committed Feb 2, 2011
1 parent dcc273a commit b2f71a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/model/RedirectorPage.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function regularLink() {
function redirectionLink() {
if($this->RedirectionType == 'External') {
if($this->ExternalURL) {
return Convert::raw2att($this->ExternalURL);
return $this->ExternalURL;
}

} else {
Expand Down

0 comments on commit b2f71a4

Please sign in to comment.