summaryrefslogtreecommitdiff
path: root/src/controllers/Users.class.php
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-09-05 18:58:43 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-09-05 18:58:43 -0400
commit70557422c2d999b85fd7ba45718da357f022fcfd (patch)
treec3824157a49d46252d6c969a525d9b885c6f5440 /src/controllers/Users.class.php
parentc81e480daaa233c35fec262e9907d35179db5e86 (diff)
Fix 3 bugs (stray * in SQL, typo in variable name, a place where isLoggedIn() was still being called on the DB
Diffstat (limited to 'src/controllers/Users.class.php')
-rw-r--r--src/controllers/Users.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controllers/Users.class.php b/src/controllers/Users.class.php
index 4a8f04c..dc89603 100644
--- a/src/controllers/Users.class.php
+++ b/src/controllers/Users.class.php
@@ -148,7 +148,7 @@ class Users extends Controller {
$this->new_user($routed, $vars);
} else {
$username = $vars['username'];
- $passowrd = $vars['password1'];
+ $password = $vars['password1'];
$uid = $db->addUser($username, $password);
if ($uid===false) {
$this->showView('users/500');