diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-07-05 08:48:58 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-07-05 08:48:58 +0000 |
commit | 806d0a3dee25333558bb0a888c2a51c33f0723cd (patch) | |
tree | 4171b59abeb1607948721d86f5c76405c666491b /modules/user/user.module | |
parent | b9c40a52370c2e7d8b3db078f869e02881435da9 (diff) | |
download | brdo-806d0a3dee25333558bb0a888c2a51c33f0723cd.tar.gz brdo-806d0a3dee25333558bb0a888c2a51c33f0723cd.tar.bz2 |
#156910 by asimmonds: fix code indentation problems introduced with new code in this development cycle; only whitespace changes
Diffstat (limited to 'modules/user/user.module')
-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 20dc8fdeb..253141664 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -2865,7 +2865,7 @@ function user_autocomplete($string = '') { $result = db_query_range("SELECT name FROM {users} WHERE LOWER(name) LIKE LOWER('%s%%')", $string, 0, 10); while ($user = db_fetch_object($result)) { $matches[$user->name] = check_plain($user->name); - } + } } drupal_json($matches); |