Skip to content
Snippets Groups Projects
Commit 2601ca02 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #1180642 by franz, catch, xjm, musicnode: Fixed PDOException in...

Issue #1180642 by franz, catch, xjm, musicnode: Fixed PDOException in statistics_exit() when path longer than 255 characters.
parent faed976f
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -82,7 +82,7 @@ function statistics_exit() { ...@@ -82,7 +82,7 @@ function statistics_exit() {
db_insert('accesslog') db_insert('accesslog')
->fields(array( ->fields(array(
'title' => truncate_utf8(strip_tags(drupal_get_title()), 255), 'title' => truncate_utf8(strip_tags(drupal_get_title()), 255),
'path' => $_GET['q'], 'path' => truncate_utf8($_GET['q'], 255),
'url' => isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '', 'url' => isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '',
'hostname' => ip_address(), 'hostname' => ip_address(),
'uid' => $user->uid, 'uid' => $user->uid,
......
...@@ -128,6 +128,16 @@ class StatisticsLoggingTestCase extends DrupalWebTestCase { ...@@ -128,6 +128,16 @@ class StatisticsLoggingTestCase extends DrupalWebTestCase {
$log = db_query('SELECT * FROM {accesslog}')->fetchAll(PDO::FETCH_ASSOC); $log = db_query('SELECT * FROM {accesslog}')->fetchAll(PDO::FETCH_ASSOC);
$this->assertTrue(is_array($log) && count($log) == 7, t('Page request was logged.')); $this->assertTrue(is_array($log) && count($log) == 7, t('Page request was logged.'));
$this->assertEqual(array_intersect_key($log[6], $expected), $expected); $this->assertEqual(array_intersect_key($log[6], $expected), $expected);
// Create a path longer than 255 characters.
$long_path = $this->randomString(256);
// Test that the long path is properly truncated when logged.
$this->drupalGet($long_path);
$log = db_query('SELECT * FROM {accesslog}')->fetchAll(PDO::FETCH_ASSOC);
$this->assertTrue(is_array($log) && count($log) == 8, 'Page request was logged for a path over 255 characters.');
$this->assertEqual($log[7]['path'], truncate_utf8($long_path, 255));
} }
} }
......
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