diff --git a/custom_slogan.module b/custom_slogan.module
index 1e9da16..6d7d083 100644
--- a/custom_slogan.module
+++ b/custom_slogan.module
@@ -265,7 +265,7 @@ function custom_slogan_page_get_slogan() {
   // If pattern is emtpy (either if the type is not overridable or simply not set) fallback to the default pattern).
   if (empty($custom_slogan_pattern)) {
     $custom_slogan_pattern = variable_get('custom_slogan_default', variable_get('site_slogan', '[site-slogan]'));
-    
+
   }
   // Allow hook_custom_slogan_pattern_alter() to modify the pattern - we cant use drupal_alter as it only supports single arguments (or arrays). We need to pass 2 variables.
   $data = array(&$custom_slogan_pattern, &$types);
@@ -320,9 +320,9 @@ function custom_slogan_token_list($type = 'all') {
 
 function custom_slogan_preprocess_page(&$vars) {
     $mod_slogan = custom_slogan_page_get_slogan();
-    if (!empty($mod_slogan)) { 
+    if (!empty($mod_slogan)) {
     $vars['site_slogan'] = $mod_slogan;
-  } 
+  }
   else {
     $vars['site_slogan'] = variable_get('site_slogan', '');
   }
