- Patch #1032024 by grendzy: comment_form_submit() overwrites author/visitor cookie when moderating/administering comments.

merge-requests/26/head
Dries Buytaert 2011-04-10 22:42:32 +02:00
parent d762662597
commit 62b8fd96ff
1 changed files with 1 additions and 1 deletions

View File

@ -2215,7 +2215,7 @@ function comment_form_submit($form, &$form_state) {
$comment = comment_form_submit_build_comment($form, $form_state);
if (user_access('post comments') && (user_access('administer comments') || $node->comment == COMMENT_NODE_OPEN)) {
// Save the anonymous user information to a cookie for reuse.
if (!$comment->uid) {
if (user_is_anonymous()) {
user_cookie_save(array_intersect_key($form_state['values'], array_flip(array('name', 'mail', 'homepage'))));
}