diff --git a/globalredirect1/globalredirect.module b/globalredirect1/globalredirect.module
index 961c1ce..1854856 100644
--- a/globalredirect1/globalredirect.module
+++ b/globalredirect1/globalredirect.module
@@ -231,16 +231,6 @@ function globalredirect_init() {
   if (isset($destination)) {
     $_GET['destination'] = $destination;
   }
-
-  // Add the canonical link to the head of the document if desired.
-  // TODO - The Canonical already gets set by Core for node page views... See http://api.drupal.org/api/function/node_page_view/7
-  if ($settings['canonical']) {
-    drupal_add_html_head_link(array(
-      'rel' => 'canonical',
-      'href' => url(drupal_is_front_page() ? '<front>' : $request_path, array('absolute' => TRUE, 'query' => $query_string)),
-    ));
-  }
-
   // Add the Content-Location header to the page
   if ($settings['content_location_header']) {
     drupal_add_http_header('Content-Location', url(drupal_is_front_page() ? '<front>' : $request_path, array('absolute' => TRUE, 'query' => $query_string)));
@@ -367,7 +357,6 @@ function _globalredirect_get_settings($default_only = FALSE) {
     'menu_check' => 0,
     'case_sensitive_urls' => 1,
     'language_redirect' => 0,
-    'canonical' => 0,
     'content_location_header' => 0,
     'term_path_handler' => 1,
     'frontpage_redirect' => 1,
