diff -uPb buzzthis.orig/buzzthis.admin.inc buzzthis/buzzthis.admin.inc
--- buzzthis.orig/buzzthis.admin.inc	2010-02-14 18:45:08.000000000 +0530
+++ buzzthis/buzzthis.admin.inc	2010-03-24 15:31:39.000000000 +0530
@@ -42,5 +42,13 @@
     '#options' => node_get_types('names'),
     '#description' => t('The node types where the buzz button shall be displayed')
   );
+
+  $form['buzzthis']['buzzthis_node_show_teaser'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Show teaser'),
+    '#default_value' => variable_get('buzzthis_node_show_teaser', 1),
+    '#description' => t('Submit node teaser in buzz')
+  );
+ 
   return system_settings_form($form);
 }
\ No newline at end of file
diff -uPb buzzthis.orig/buzzthis.module buzzthis/buzzthis.module
--- buzzthis.orig/buzzthis.module	2010-02-15 17:32:54.000000000 +0530
+++ buzzthis/buzzthis.module	2010-03-24 15:44:59.000000000 +0530
@@ -121,7 +121,12 @@
   }
   
   $site_name = variable_get('site_name', 'Drupal');
+  if (variable_get('buzzthis_node_show_teaser', 1)) {
   $google_link = "http://www.google.com/reader/link?url=$url&title=$title&snippet=$teaser&srcURL=$base_url&srcTitle=$site_name";
+  }
+  else {
+    $google_link = "http://www.google.com/reader/link?url=$url&title=$title&srcURL=$base_url&srcTitle=$site_name";
+  }
   $link = "<a class='buzzbutton' href='$google_link'>$link</a>";
   return theme('buzzthis_button', $link);
 }
Common subdirectories: buzzthis.orig/images and buzzthis/images
