diff --git a/fb_social.module b/fb_social.module
index 4087d96..af6b1b1 100644
--- a/fb_social.module
+++ b/fb_social.module
@@ -644,7 +644,7 @@ function fb_social_page_alter(&$page) {
   
   if (variable_get('fb_social_opengraph', 1)) {
     $content = drupal_get_title();
-    $content = $content ? strip_tags($content) : variable_get('site_name', 'Drupal');
+    $content = $content ? decode_entities(strip_tags($content)) : variable_get('site_name', 'Drupal');
     //add fbml header meta information 
     $element = array(
       '#tag' => 'meta', 
