Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
drupal.org
link
Commits
6ec758f3
Commit
6ec758f3
authored
Jun 29, 2008
by
Nathan Haug
Browse files
#141925. Increasing length of url and title fields to 1024 characters.
parent
156d672f
Changes
1
Hide whitespace changes
Inline
Side-by-side
link.module
View file @
6ec758f3
...
...
@@ -152,8 +152,8 @@ function link_field_settings($op, $field) {
case
'database columns'
:
return
array
(
'url'
=>
array
(
'type'
=>
'varchar'
,
'length'
=>
255
,
'not null'
=>
TRUE
,
'default'
=>
"''"
,
'sortable'
=>
TRUE
),
'title'
=>
array
(
'type'
=>
'varchar'
,
'length'
=>
255
,
'not null'
=>
TRUE
,
'default'
=>
"''"
,
'sortable'
=>
TRUE
),
'url'
=>
array
(
'type'
=>
'varchar'
,
'length'
=>
1024
,
'not null'
=>
TRUE
,
'default'
=>
"''"
,
'sortable'
=>
TRUE
),
'title'
=>
array
(
'type'
=>
'varchar'
,
'length'
=>
1024
,
'not null'
=>
TRUE
,
'default'
=>
"''"
,
'sortable'
=>
TRUE
),
'attributes'
=>
array
(
'type'
=>
'mediumtext'
,
'not null'
=>
FALSE
),
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment