Skip to content
Snippets Groups Projects
Commit cd517f16 authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

#177927 by chx: use path=/ in PHP comment settings cookie creation, so cookies...

#177927 by chx: use path=/ in PHP comment settings cookie creation, so cookies set around the site are available in other 'directories'
parent 216322ac
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
...@@ -837,7 +837,7 @@ function comment_save($edit) { ...@@ -837,7 +837,7 @@ function comment_save($edit) {
if ($edit['uid'] === $user->uid) { // '===' because we want to modify anonymous users too if ($edit['uid'] === $user->uid) { // '===' because we want to modify anonymous users too
$edit['name'] = $user->name; $edit['name'] = $user->name;
} }
db_query("INSERT INTO {comments} (nid, pid, uid, subject, comment, format, hostname, timestamp, status, thread, name, mail, homepage) VALUES (%d, %d, %d, '%s', '%s', %d, '%s', %d, %d, '%s', '%s', '%s', '%s')", $edit['nid'], $edit['pid'], $edit['uid'], $edit['subject'], $edit['comment'], $edit['format'], ip_address(), $edit['timestamp'], $status, $thread, $edit['name'], $edit['mail'], $edit['homepage']); db_query("INSERT INTO {comments} (nid, pid, uid, subject, comment, format, hostname, timestamp, status, thread, name, mail, homepage) VALUES (%d, %d, %d, '%s', '%s', %d, '%s', %d, %d, '%s', '%s', '%s', '%s')", $edit['nid'], $edit['pid'], $edit['uid'], $edit['subject'], $edit['comment'], $edit['format'], ip_address(), $edit['timestamp'], $status, $thread, $edit['name'], $edit['mail'], $edit['homepage']);
$edit['cid'] = db_last_insert_id('comments', 'cid'); $edit['cid'] = db_last_insert_id('comments', 'cid');
...@@ -1721,7 +1721,7 @@ function comment_form_validate($form, &$form_state) { ...@@ -1721,7 +1721,7 @@ function comment_form_validate($form, &$form_state) {
foreach (array('name', 'homepage', 'mail') as $field) { foreach (array('name', 'homepage', 'mail') as $field) {
// Set cookie for 365 days. // Set cookie for 365 days.
if (isset($form_state['values'][$field])) { if (isset($form_state['values'][$field])) {
setcookie('comment_info_'. $field, $form_state['values'][$field], time() + 31536000); setcookie('comment_info_'. $field, $form_state['values'][$field], time() + 31536000, '/');
} }
} }
} }
......
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