From 21274fbb94917593e784f8e1fffbea1ea2784e3c Mon Sep 17 00:00:00 2001
From: Steven Wittens <steven@10.no-reply.drupal.org>
Date: Sun, 22 May 2005 21:14:59 +0000
Subject: [PATCH] - #23285: Allow theming of comment previews, like node
 previews.

---
 modules/comment.module         | 14 +++++++++-----
 modules/comment/comment.module | 14 +++++++++-----
 2 files changed, 18 insertions(+), 10 deletions(-)

diff --git a/modules/comment.module b/modules/comment.module
index a53535eb1cda..ab895ac33d80 100644
--- a/modules/comment.module
+++ b/modules/comment.module
@@ -493,10 +493,7 @@ function comment_preview($edit) {
 
   $output = '';
 
-  $comment = new StdClass();
-  foreach ($edit as $key => $value) {
-    $comment->$key = $value;
-  }
+  $comment = array2object($edit);
 
   // Attach the user and time information.
   $comment->uid = $user->uid;
@@ -504,7 +501,7 @@ function comment_preview($edit) {
   $comment->name = check_plain($user->name ? $user->name : $comment->name);
 
   // Preview the comment.
-  $output .= theme('comment_view', $comment, theme('links', module_invoke_all('link', 'comment', $comment, 1)));
+  $output .= theme('comment_preview', $comment, theme('links', module_invoke_all('link', 'comment', $comment, 1)));
   $output .= theme('comment_form', $edit, t('Reply'));
 
   if ($edit['pid']) {
@@ -1431,6 +1428,13 @@ function theme_comment_form($edit, $title) {
   return theme('box', $title, form($form, 'post', url('comment/reply/'. $edit['nid'])));
 }
 
+function theme_comment_preview($comment, $links = '', $visible = 1) {
+  $output = '<div class="preview">';
+  $output .= theme('comment_view', $comment, $links, $visible);
+  $output .= '</div>';
+  return $output;
+};
+
 function theme_comment_view($comment, $links = '', $visible = 1) {
 
   // Emit selectors:
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index a53535eb1cda..ab895ac33d80 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -493,10 +493,7 @@ function comment_preview($edit) {
 
   $output = '';
 
-  $comment = new StdClass();
-  foreach ($edit as $key => $value) {
-    $comment->$key = $value;
-  }
+  $comment = array2object($edit);
 
   // Attach the user and time information.
   $comment->uid = $user->uid;
@@ -504,7 +501,7 @@ function comment_preview($edit) {
   $comment->name = check_plain($user->name ? $user->name : $comment->name);
 
   // Preview the comment.
-  $output .= theme('comment_view', $comment, theme('links', module_invoke_all('link', 'comment', $comment, 1)));
+  $output .= theme('comment_preview', $comment, theme('links', module_invoke_all('link', 'comment', $comment, 1)));
   $output .= theme('comment_form', $edit, t('Reply'));
 
   if ($edit['pid']) {
@@ -1431,6 +1428,13 @@ function theme_comment_form($edit, $title) {
   return theme('box', $title, form($form, 'post', url('comment/reply/'. $edit['nid'])));
 }
 
+function theme_comment_preview($comment, $links = '', $visible = 1) {
+  $output = '<div class="preview">';
+  $output .= theme('comment_view', $comment, $links, $visible);
+  $output .= '</div>';
+  return $output;
+};
+
 function theme_comment_view($comment, $links = '', $visible = 1) {
 
   // Emit selectors:
-- 
GitLab