Skip to content
Snippets Groups Projects
Commit 939df0b3 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #107824 by Dave Reid, AlexisWilke et al: convert certain URL fields...

- Patch #107824 by Dave Reid, AlexisWilke et al: convert certain URL fields from VARCHAR to TEXT to avoid errors.
parent cadd9bd5
No related branches found
No related tags found
No related merge requests found
......@@ -75,10 +75,8 @@ function dblog_schema() {
'description' => 'URL of the origin of the event.',
),
'referer' => array(
'type' => 'varchar',
'length' => 128,
'type' => 'text',
'not null' => FALSE,
'default' => '',
'description' => 'URL of referring page.',
),
'hostname' => array(
......@@ -106,12 +104,12 @@ function dblog_schema() {
}
/**
* Allow NULL values for links.
* Allow NULL values for links and longer referers.
*/
function dblog_update_7001() {
$ret = array();
db_change_field($ret, 'watchdog', 'link', 'link', array('type' => 'varchar', 'length' => 255, 'not null' => FALSE, 'default' => ''));
db_change_field($ret, 'watchdog', 'referer', 'referer', array('type' => 'varchar', 'length' => 255, 'not null' => FALSE, 'default' => ''));
db_change_field($ret, 'watchdog', 'referer', 'referer', array('type' => 'text', 'not null' => FALSE));
return $ret;
}
......
......@@ -76,8 +76,7 @@ function statistics_schema() {
'description' => 'Internal path to page visited (relative to Drupal root.)',
),
'url' => array(
'type' => 'varchar',
'length' => 255,
'type' => 'text',
'not null' => FALSE,
'description' => 'Referrer URI.',
),
......@@ -119,3 +118,11 @@ function statistics_schema() {
return $schema;
}
/**
* Allow longer referrers.
*/
function statistics_update_7000() {
$ret = array();
db_change_field($ret, 'accesslog', 'url', 'url', array('type' => 'text', 'not null' => FALSE));
return $ret;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment