BUG: Fixing Link definition in BrokenExternalLinks

This commit is contained in:
Kirk Mayo 2013-08-26 15:41:50 +12:00
parent 1641007fff
commit 9708dfd074
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(2083)" // 2083 is the maximum length of a URL in Internet Explorer.
'Link' => 'Varchar(2083)', // 2083 is the maximum length of a URL in Internet Explorer.
'HTTPCode' =>'Int'
);