diff --git a/core/modules/comment/comment.install b/core/modules/comment/comment.install index bc177ca..06b4c22 100644 --- a/core/modules/comment/comment.install +++ b/core/modules/comment/comment.install @@ -549,8 +549,8 @@ function comment_update_8005(&$sandbox) { db_add_index('comment_entity_statistics', 'comment_count', array('comment_count')); db_add_index('comment_entity_statistics', 'last_comment_uid', array('last_comment_uid')); - $t = get_t(); - return $t('Updated database to reflect new comment structure'); + //$t = get_t(); + //return $t('Updated database to reflect new comment structure'); } /** @@ -647,8 +647,8 @@ function comment_update_8006(&$sandbox) { variable_del('comment_form_location_' . $node_type); variable_del('comment_preview_' . $node_type); } - $t = get_t(); - return $t('Created required fields for each comment bundle'); + //$t = get_t(); + //return $t('Created required fields for each comment bundle'); } /** @@ -754,8 +754,8 @@ function comment_update_8007(&$sandbox) { $sandbox['#finished'] = empty($sandbox['max']) ? 1 : ($sandbox['progress'] / $sandbox['max']); if ($sandbox['#finished'] === 1) { - $t = get_t(); - return $t('Migrated existing node comment settings to field api.'); + //$t = get_t(); + //return $t('Migrated existing node comment settings to field api.'); } } @@ -767,8 +767,8 @@ function comment_update_8008(&$sandbox) { db_drop_field('node', 'comment'); // Remove the {node_revision}.comment field. db_drop_field('node_revision', 'comment'); - $t = get_t(); - return $t('Removed old fields.'); + //$t = get_t(); + //return $t('Removed old fields.'); } /**