diff --git mothership/template.php mothership/template.php
index 078baa4..efeaa5e 100644
--- mothership/template.php
+++ mothership/template.php
@@ -224,16 +224,16 @@ function mothership_preprocess(&$vars, $hook) {
     */
     switch (current_path()) {
       case 'user':
-        $vars[title] = t('Login');
-        unset( $vars[tabs] );
+        $vars['title'] = t('Login');
+        unset($vars['tabs']);
         break;
       case 'user/register':
-        $vars[title] = t('New account');
-        unset( $vars[tabs] );
+        $vars['title'] = t('New account');
+        unset($vars['tabs']);
         break;
       case 'user/password':
-        $vars[title] = t('I forgot my password');
-        unset( $vars[tabs] );
+        $vars['title'] = t('I forgot my password');
+        unset($vars['tabs']);
         break;
 
       default:
