Skip to content

Commit

Permalink
MDL-24561 fixed missing u. prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
skodak committed Jan 11, 2011
1 parent 344817f commit 6226c65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod/forum/subscribers.php
Expand Up @@ -120,7 +120,7 @@
}

/// Get all the potential subscribers excluding users already subscribed
$users = forum_get_potential_subscribers($context, $currentgroup, 'id,email,firstname,lastname', 'firstname ASC, lastname ASC');
$users = forum_get_potential_subscribers($context, $currentgroup, 'u.id,u.email,u.firstname,u.lastname', 'u.firstname ASC, u.lastname ASC');
if (!$users) {
$users = array();
}
Expand Down

0 comments on commit 6226c65

Please sign in to comment.