diff --git a/dfp.admin.inc b/dfp.admin.inc
index 28bd732..8046eb0 100644
--- a/dfp.admin.inc
+++ b/dfp.admin.inc
@@ -131,7 +131,7 @@ function dfp_admin_settings($form, $form_state) {
   $form['adtest']['tokens'] = array(
     '#theme' => 'token_tree',
     '#token_types' => array('dfp_tag', 'node', 'term', 'user'),
-    '#global_types' => FALSE,
+    '#global_types' => TRUE,
     '#click_insert' => TRUE,
     '#dialog' => TRUE,
   );
diff --git a/dfp.adtest.inc b/dfp.adtest.inc
index 5ea1f7c..331189c 100644
--- a/dfp.adtest.inc
+++ b/dfp.adtest.inc
@@ -58,7 +58,7 @@ function dfp_adtest_form($form, &$form_state) {
   $form['tokens'] = array(
     '#theme' => 'token_tree',
     '#token_types' => array('dfp_tag', 'node', 'term', 'user'),
-    '#global_types' => FALSE,
+    '#global_types' => TRUE,
     '#click_insert' => TRUE,
     '#dialog' => TRUE,
     '#weight' => 100,
diff --git a/dfp.module b/dfp.module
index bd0d858..8b33691 100644
--- a/dfp.module
+++ b/dfp.module
@@ -249,7 +249,7 @@ function dfp_context_plugins() {
 }
 
 /**
- * Implements of hook_token_info().
+ * Implements hook_token_info().
  */
 function dfp_token_info() {
   $type = array(
@@ -282,7 +282,7 @@ function dfp_token_info() {
 }
 
 /**
- * Implements of hook_token().
+ * Implements hook_token().
  */
 function dfp_tokens($type, $tokens, array $data = array(), array $options = array()) {
   $replacements = array();
@@ -779,7 +779,7 @@ function template_preprocess_dfp_short_tag(&$variables) {
 
   $targets = array();
   foreach ($tag->targeting as $data) {
-    $tagets[] = check_plain($data['target']) . '=' . check_plain($data['value']);
+    $targets[] = check_plain($data['target']) . '=' . check_plain($data['value']);
   }
   if (!empty($targets)) {
     $keyvals['t'] = implode('&', $targets);
diff --git a/plugins/contexts/dfp_context_reaction_adunit.inc b/plugins/contexts/dfp_context_reaction_adunit.inc
index efbbe1f..5c89a42 100644
--- a/plugins/contexts/dfp_context_reaction_adunit.inc
+++ b/plugins/contexts/dfp_context_reaction_adunit.inc
@@ -45,7 +45,7 @@ class dfp_context_reaction_adunit extends context_reaction {
     $form['tokens'] = array(
       '#theme' => 'token_tree',
       '#token_types' => array('dfp_tag', 'node', 'term', 'user'),
-      '#global_types' => FALSE,
+      '#global_types' => TRUE,
       '#click_insert' => TRUE,
       '#dialog' => TRUE,
     );
diff --git a/plugins/export_ui/dfp_ctools_export_ui.inc b/plugins/export_ui/dfp_ctools_export_ui.inc
index e000253..6fc3aee 100644
--- a/plugins/export_ui/dfp_ctools_export_ui.inc
+++ b/plugins/export_ui/dfp_ctools_export_ui.inc
@@ -108,7 +108,7 @@ function dfp_tag_form(&$form, &$form_state) {
   $form['tag_settings']['tokens'] = array(
     '#theme' => 'token_tree',
     '#token_types' => array('dfp_tag', 'node', 'term', 'user'),
-    '#global_types' => FALSE,
+    '#global_types' => TRUE,
     '#click_insert' => TRUE,
     '#dialog' => TRUE,
   );
