diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2007-01-05 05:32:23 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2007-01-05 05:32:23 +0000 |
commit | 365439ffdfd0482f174389552e1d1e2e67a060c3 (patch) | |
tree | 722ea674a698d957e657508c97b2ecba62d22cd4 /modules/user | |
parent | 4026afab01aa4cc232884e680d1962ab5881df92 (diff) | |
download | brdo-365439ffdfd0482f174389552e1d1e2e67a060c3.tar.gz brdo-365439ffdfd0482f174389552e1d1e2e67a060c3.tar.bz2 |
#107015: Code consistency, capitalization of class names.
Diffstat (limited to 'modules/user')
-rw-r--r-- | modules/user/user.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index d11297f7a..478a4053e 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -2502,7 +2502,7 @@ function user_build_filter_query() { // This checks to see if this permission filter is an enabled permission for the authenticated role. // If so, then all users would be listed, and we can skip adding it to the filter query. if ($key == 'permission') { - $account = new StdClass(); + $account = new stdClass(); $account->uid = 'user_filter'; $account->roles = array(DRUPAL_AUTHENTICATED_RID => 1); if (user_access($value, $account)) { |