MINOR: Increase size of URL length to be lowest common denominator of maximum length in modern browsers.

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@92351 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Andrew O'Neil 2009-11-20 00:50:56 +00:00 committed by Sam Minnee
parent 71fb665ed3
commit ad52766d6b

View File

@ -13,7 +13,7 @@ class RedirectorPage extends Page {
static $db = array(
"RedirectionType" => "Enum('Internal,External','Internal')",
"ExternalURL" => "Varchar(255)",
"ExternalURL" => "Varchar(2083)" // 2083 is the maximum length of a URL in Internet Explorer.
);
static $defaults = array(