diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-05-03 09:22:05 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-05-03 09:22:05 +0000 |
commit | 0906c80d20efa2e016ba7915be4418e95da6b4c9 (patch) | |
tree | 1b0d462d8e66e2be6f2b17e8f29d664a10b112ef | |
parent | 11fef9ed9cdd1cd979028e2b62ce42deaf87c987 (diff) | |
download | brdo-0906c80d20efa2e016ba7915be4418e95da6b4c9.tar.gz brdo-0906c80d20efa2e016ba7915be4418e95da6b4c9.tar.bz2 |
Removing a stray ;
-rw-r--r-- | modules/user.module | 2 | ||||
-rw-r--r-- | modules/user/user.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/user.module b/modules/user.module index 47ae006fd..8965e58fb 100644 --- a/modules/user.module +++ b/modules/user.module @@ -951,7 +951,7 @@ function user_authenticate($name, $pass) { // Try to log in the user locally. Don't set $user unless successful. if ($account = user_load(array('name' => $name, 'pass' => $pass, 'status' => 1))) { $user = $account; - }; + } // Strip name and server from ID: if ($server = strrchr($name, '@')) { diff --git a/modules/user/user.module b/modules/user/user.module index 47ae006fd..8965e58fb 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -951,7 +951,7 @@ function user_authenticate($name, $pass) { // Try to log in the user locally. Don't set $user unless successful. if ($account = user_load(array('name' => $name, 'pass' => $pass, 'status' => 1))) { $user = $account; - }; + } // Strip name and server from ID: if ($server = strrchr($name, '@')) { |