at row 126
$result = pager_query('SELECT u.uid, u.name FROM {users} u WHERE status <> 0 AND access <> 0 ORDER BY u.name ASC', $number, $element_override);
status and acces not have iinitially u.
u.status and u.access , so is correct?
also here row 110 not is used u. ; but here isn't necessary because isn't crete the table alias u
$result = pager_query('SELECT uid, name FROM {users} WHERE status <> 0 AND access <> 0 ORDER BY created DESC', $number, $element_override);
Comments
Comment #1
deekayen commented