diff --git a/README.txt b/README.txt
index 7f2ae8a..4377c4b 100644
--- a/README.txt
+++ b/README.txt
@@ -160,7 +160,7 @@ Currently Panels Everywhere can find the following contexts:
          using a page manager page that derives a single term context.
 
 In addition, before this is actually utilized you can use 
-hook_panels_everywhere_contexts(&$contexts, $placeholders).
+hook_panels_everywhere_contexts_alter(&$contexts, $placeholders).
 
 If you add contexts, use this function:
   panels_everywhere_site_template_add_context($contexts, $context, t('Human readable identifier'), 'keyword', 'internalid');
diff --git a/plugins/tasks/site_template.inc b/plugins/tasks/site_template.inc
index 5dfe8af..72f616f 100644
--- a/plugins/tasks/site_template.inc
+++ b/plugins/tasks/site_template.inc
@@ -113,7 +113,7 @@ function panels_everywhere_site_template_get_base_contexts($task, $subtask, $pla
   panels_everywhere_site_template_add_context($contexts, $term, t('Taxonomy term being viewed'), 'term', 'term');
 
   // Allow other modules to also add contexts to the site template.
-  drupal_alter('page_manager_contexts', $contexts, $placeholders);
+  drupal_alter('panels_everywhere_contexts', $contexts, $placeholders);
 
   return $contexts;
 }
