mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
BUGFIX: Extend URL length from 50 to 2048 chars
This commit is contained in:
parent
5220e06737
commit
5dbbcaeaf1
@ -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'
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user