From 28b6a088b7a8bd2d73a25cf7b08383ad97abdc9d Mon Sep 17 00:00:00 2001
From: Luke Shumaker <LukeShu@sbcglobal.net>
Date: Mon, 5 Sep 2011 02:03:37 -0400
Subject: Fix a few growing pains

* Users.class.php: whitespace change, fix a few array things
* Database.class.php: refer to $mm->hasher(), not $this->hasher()
* new.html.php: fix stupid shit
---
 src/views/pages/users/new.html.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'src/views/pages')

diff --git a/src/views/pages/users/new.html.php b/src/views/pages/users/new.html.php
index f2dacb5..6b78b5e 100644
--- a/src/views/pages/users/new.html.php
+++ b/src/views/pages/users/new.html.php
@@ -16,10 +16,10 @@ if (in_array('user exists', $VARS['errors'])) {
 $t->inputText('auth_name','Username',
               "This is the name you use to log in, but it is also a ".
               "short name that is used in various places, think of it ".
-              "as a sort of <q>Twitter name</q>.",'',$VARS['username']);
+              "as a sort of <q>Twitter name</q>.",$VARS['username']);
 
 @$password = $VARS['password1'];
-if ($in_array('pw mixmatch', $VARS['errors'])) {
+if (in_array('pw mixmatch', $VARS['errors'])) {
 	$t->inputP("The passwords didn't match.", true);
 	$password = '';
 }
-- 
cgit v1.2.3-2-g168b