diff --git a/twitter-pull-listing.tpl.php b/twitter-pull-listing.tpl.php
index 2531af9..17ba69c 100644
--- a/twitter-pull-listing.tpl.php
+++ b/twitter-pull-listing.tpl.php
@@ -21,11 +21,6 @@
  */
 ?>
 <div class="tweets-pulled-listing">
-
-  <?php if (!empty($title)): ?>
-    <h2><?php print $title; ?></h2>
-  <?php endif; ?>
-
   <?php if (is_array($tweets)): ?>
     <?php $tweet_count = count($tweets); ?>
     
diff --git a/twitter_pull.module b/twitter_pull.module
index 6bf2ef0..51116e7 100644
--- a/twitter_pull.module
+++ b/twitter_pull.module
@@ -171,7 +171,7 @@ function twitter_pull_block_view($delta = '') {
   $info = twitter_pull_block_data();
   $b_info = $info["$delta"];
   $content = twitter_pull_render($b_info->tweetkey, $b_info->title, $b_info->number_of_items, $b_info->theme_key);
-  return array("subject"=>"", "content"=>$content);
+  return array("subject"=>$b_info->title, "content"=>$content);
 }
