summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-04-26 09:53:50 +0000
committerDries Buytaert <dries@buytaert.net>2009-04-26 09:53:50 +0000
commit840be5ba4e18cfdd0435c94f42d7d17dbb8f2a9d (patch)
tree80b4af685cc77ba632e507a62c8459a4f90eabde /modules
parentd175324b0ff6c39120a501d16794f42a076c2110 (diff)
downloadbrdo-840be5ba4e18cfdd0435c94f42d7d17dbb8f2a9d.tar.gz
brdo-840be5ba4e18cfdd0435c94f42d7d17dbb8f2a9d.tar.bz2
- Patch #444966 by dereine: code style clean-up.
Diffstat (limited to 'modules')
-rw-r--r--modules/user/user.module9
1 files changed, 5 insertions, 4 deletions
diff --git a/modules/user/user.module b/modules/user/user.module
index 64bebc656..dc4e95343 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -2486,10 +2486,11 @@ function user_build_filter_query() {
$where = !empty($where) ? 'AND ' . implode(' AND ', $where) : '';
$join = !empty($join) ? ' ' . implode(' ', array_unique($join)) : '';
- return array('where' => $where,
- 'join' => $join,
- 'args' => $args,
- );
+ return array(
+ 'where' => $where,
+ 'join' => $join,
+ 'args' => $args,
+ );
}
/**