Skip to content

Commit

Permalink
Fix database query in profile api
Browse files Browse the repository at this point in the history
  • Loading branch information
mantis committed Sep 5, 2014
1 parent e7b23e6 commit c7c15a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/profile_api.php
Expand Up @@ -281,7 +281,7 @@ function profile_get_all_for_project( $p_project_id ) {
FROM ' . $t_user_profile_table . ' up, ' . $t_bug_table . ' b
WHERE ' . $t_project_where . '
AND up.id = b.profile_id
ORDER BY platform, os, os_build';
ORDER BY up.platform, up.os, up.os_build';
$t_result = db_query_bound( $t_query );

$t_rows = array();
Expand Down

0 comments on commit c7c15a5

Please sign in to comment.