Index: comment_mover.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/comment_mover/comment_mover.module,v
retrieving revision 1.15
diff -u -Ffunction -r1.15 comment_mover.module
--- comment_mover.module 3 Aug 2006 11:35:56 -0000 1.15
+++ comment_mover.module 30 Aug 2006 23:51:10 -0000
@@ -327,12 +327,12 @@ function comment_mover_move($object, $pi
switch ($object['comment_mover']) {
case COMMENT_MOVER_COMMENT_TO_COMMENT:
// If we moved the comment to another node, add a redirector.
- $object['comment'] = t('This comment has been moved here.', array('%url' => url('node/'. $nid, NULL, 'comment-'. $new_comment['cid'], TRUE)));
+ $object['comment'] = t('This content has been moved here.', array('%url' => url('node/'. $nid, NULL, 'comment-'. $new_comment['cid'], TRUE)));
comment_mover_comment_post($object);
break;
case COMMENT_MOVER_NODE_TO_COMMENT:
$object['format'] = 2;
- $object['body'] = "";
+ $object['body'] = t('This content has been moved here.', array('%url' => url('node/'. $comment['nid'], NULL, 'comment-'. $new_comment['cid'], TRUE)));
// for some reason this is needed.
unset($object['0']);
$object = (object) $object;