BUG: Extned the size of the varchar for Link in BrokenExternalLinks

This commit is contained in:
Kirk Mayo 2013-08-26 15:34:38 +12:00
parent d62c7e57ac
commit 1803f0cdd5
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
class BrokenExternalLinks extends DataObject {
private static $db = array(
'Link' => 'Varchar',
"Link" => "Varchar(2083)" // 2083 is the maximum length of a URL in Internet Explorer.
'HTTPCode' =>'Int'
);