diff --git a/nodewords_extra/nodewords_extra.module b/nodewords_extra/nodewords_extra.module
index 54723d4..025ffce 100644
--- a/nodewords_extra/nodewords_extra.module
+++ b/nodewords_extra/nodewords_extra.module
@@ -295,29 +295,20 @@ function nodewords_extra_dc_date_prepare(&$tags, $content, $options) {
  * Set the form fields used to implement the options for the meta tag.
  */
 function nodewords_extra_dc_description_form(&$form, $content, $options) {
-  if (!isset($form['description'])) {
-    $bool = (
-      isset($options['node_type']) &&
-      variable_get('nodewords_use_teaser_' . $options['node_type'], FALSE)
-    );
+  $form['dc.description'] = array(
+    '#tree' => TRUE,
+    '#weight' => -188,
+  );
 
-    if (!$bool) {
-      $form['dc.description'] = array(
-        '#tree' => TRUE,
-        '#weight' => -188,
-      );
-
-      $form['dc.description']['value'] = array(
-        '#type' => 'textarea',
-        '#title' => t('Dublin Core: Description'),
-        '#description' => t('Enter a one or two sentence description of your page. Limit the description to about 20 words with a maximum of %count characters. It should not contain any HTML tags or other formatting.', array('%count' => variable_get('nodewords_max_size', 350))),
-        '#default_value' => empty($content['value']) ? (!empty($options['default']['dc.description']['value']) ? $options['default']['dc.description']['value'] : '') : $content['value'],
-        '#cols' => 60,
-        '#rows' => 3,
-        '#wysiwyg' => FALSE,
-      );
-    }
-  }
+  $form['dc.description']['value'] = array(
+    '#type' => 'textarea',
+    '#title' => t('Dublin Core: Description'),
+    '#description' => t('Enter a one or two sentence description of your page. Limit the description to about 20 words with a maximum of %count characters. It should not contain any HTML tags or other formatting.', array('%count' => variable_get('nodewords_max_size', 350))),
+    '#default_value' => empty($content['value']) ? (!empty($options['default']['dc.description']['value']) ? $options['default']['dc.description']['value'] : '') : $content['value'],
+    '#cols' => 60,
+    '#rows' => 3,
+    '#wysiwyg' => FALSE,
+  );
 }
 
 /**
