From 556ef56c52bbc9b4f73d69fd79b5b8df7dc26437 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 29 May 2007 06:27:37 +0000 Subject: - Patch #147417 by robertDouglas: only save cookie for anonymous users. --- modules/comment/comment.module | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'modules') diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 9e6c25c8c..3f1e76ac8 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -1685,9 +1685,12 @@ function comment_form_add_preview($form, $edit, &$form_state) { } function comment_form_validate($form, &$form_state, $form_values) { - foreach (array('name', 'homepage', 'mail') as $field) { - //set cookie for 365 days - setcookie('comment_info_'. $field, $form_values[$field], time() + 31536000); + global $user; + if ($user->uid === 0) { + foreach (array('name', 'homepage', 'mail') as $field) { + //set cookie for 365 days + setcookie('comment_info_'. $field, $form_values[$field], time() + 31536000); + } } comment_validate($form_values); } @@ -2075,4 +2078,3 @@ function int2vancode($i = 0) { function vancode2int($c = '00') { return base_convert(substr($c, 1), 36, 10); } - -- cgit v1.2.3