mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR: Increase size of URL length to be lowest common denominator of maximum length in modern browsers. (from r92351)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@92461 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
abb04b2ea4
commit
21879b9bf2
@ -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(
|
||||
|
Loading…
Reference in New Issue
Block a user