--- nodewords_tokens.module	Sun Jan 16 12:59:31 2011
+++ nodewords_tokens.module.old	Sun Jan 16 12:58:06 2011
@@ -299,21 +299,15 @@ function _nodewords_tokens_metatag_from_node_content($
       return '';
     }
 
-    $result=$node->body;
-    // Remove the text matching the regular expression.
-    $regexp = trim(variable_get('nodewords_filter_regexp', ''));
-    if (!empty($regexp)) {
-      $result = preg_replace('/' . $regexp . '/i', '', $result);
-    }
-
     // Replace the tag IMG with the attribute ALT, and strip off all the
     // HTML tags.
     $result = strip_tags(
       preg_replace_callback("/<img\s[^>]*alt=[\"']([^\"']*)[\"'][^>]*>/i",
         '_nodewords_tokens_teaser_match_callback',
-        $result
+        $node->body
       )
     );
+
 
     $result = preg_replace('/(\r\n?|\n)/', ' ', node_teaser(trim($result),$node->format, $options['size']));
   }
