diff --git a/README.txt b/README.txt
index c1e98bd..d72954e 100644
--- a/README.txt
+++ b/README.txt
@@ -12,6 +12,7 @@ Links can be added for these social networks:
  - Yahoo
  - Linked In
  - Orkut
+ - Digg
 
 Links are added to all nodes of the types configured to allow it, and appear with a class name
 based on the social network being shared to.
diff --git a/social_share.module b/social_share.module
index 9f1b568..dd40e42 100644
--- a/social_share.module
+++ b/social_share.module
@@ -27,7 +27,7 @@ function social_share_menu() {
  */
 function social_share_node_view($node, $view_mode, $language) {
   // these three lines check to see if we can display the share box
-  if (($view_mode == 'teaser' && variable_get('social_share_teaser', 1) == 1) || ($view_mode != 'teaser')) {
+  if (($view_mode == 'teaser' && variable_get('social_share_teaser', 1) == 1) || ($view_mode == 'full')) {
     $enabledTypes = variable_get('social_share_node_types', array());
     if ($enabledTypes[$node->type]) {
 
