BUGFIX: Extend URL length from 50 to 2048 chars

This commit is contained in:
Luke Hudson 2009-12-08 22:58:18 +00:00
parent 5220e06737
commit 5dbbcaeaf1
1 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,9 @@ class TrackBackPing extends DataObject {
static $db = array(
'Title' => 'Varchar',
'Excerpt' => 'Text',
'Url' => 'Varchar',
// 2083 is URL-length limit for IE, AFAIK.
// see: http://www.boutell.com/newfaq/misc/urllength.html
'Url' => 'Varchar(2048)',
'BlogName' => 'Varchar'
);