diff --git a/sites/all/themes/unl_wdn/template.php b/sites/all/themes/unl_wdn/template.php
index 5321c004557d5c247d2b1d7c9fd1456419120fbf..166c0efec2000876ec8526abda6d5e657aae26d8 100644
--- a/sites/all/themes/unl_wdn/template.php
+++ b/sites/all/themes/unl_wdn/template.php
@@ -197,11 +197,11 @@ function unl_wdn_preprocess_html(&$vars, $hook) {
   }
 
   if (!module_exists('metatag')) {
-    // Set the <title> tag to UNL format: Page Title | Site Name | University of Nebraska&ndash;Lincoln
+    // Set the <title> tag to UNL format: Page Title | Site Name | University of Nebraska–Lincoln
     if ($vars['is_front']) {
       unset($vars['head_title_array']['title']);
     }
-    if (variable_get('site_name') != 'University of Nebraska&ndash;Lincoln') {
+    if (variable_get('site_name') != 'University of Nebraska–Lincoln') {
       $vars['head_title_array'] = array_merge($vars['head_title_array'], array('UNL' => 'University of Nebraska&ndash;Lincoln'));
     }
     $vars['head_title'] = implode(' | ', $vars['head_title_array']);