diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-09-05 02:03:37 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-09-05 02:03:37 -0400 |
commit | 28b6a088b7a8bd2d73a25cf7b08383ad97abdc9d (patch) | |
tree | e2ef4a9982dcb846fc18cbbd673a1112dd856515 /src/views/pages/users | |
parent | 570901ba4e526be37afd0cbbe018cb0500a7cda1 (diff) |
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
Diffstat (limited to 'src/views/pages/users')
-rw-r--r-- | src/views/pages/users/new.html.php | 4 |
1 files changed, 2 insertions, 2 deletions
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 = ''; } |