summaryrefslogtreecommitdiff
path: root/modules/profile/profile.pages.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-03-08 15:46:58 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-03-08 15:46:58 +0000
commit59792013ccb13dbd38eefee11e418af67e1c207c (patch)
treef8cee014c3f6bfc097cb17b20ab73ffef8d9b046 /modules/profile/profile.pages.inc
parent7b67066ecbe92d45a3ead9be363a2dce8e946e57 (diff)
downloadbrdo-59792013ccb13dbd38eefee11e418af67e1c207c.tar.gz
brdo-59792013ccb13dbd38eefee11e418af67e1c207c.tar.bz2
#525058 by andypost, mfb, and oneoftwo: Fixed pages view for profile fields broken.
Diffstat (limited to 'modules/profile/profile.pages.inc')
-rw-r--r--modules/profile/profile.pages.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/profile/profile.pages.inc b/modules/profile/profile.pages.inc
index 346223285..023b2357c 100644
--- a/modules/profile/profile.pages.inc
+++ b/modules/profile/profile.pages.inc
@@ -33,7 +33,7 @@ function profile_browse() {
':visibility' => PROFILE_PUBLIC_LISTINGS,
))->fetchAll();
- $query = db_select('users')->extend('PagerDefault');
+ $query = db_select('users', 'u')->extend('PagerDefault');
$query->join('profile_value', 'v', 'u.uid = v.uid');
$query
->fields('u', array('uid', 'access'))