diff --git a/mantisbt/2.2.0/core/project_api.php b/mantisbt/2.2.0/core/project_api.php
index bf42e9a..4a97e91 100644
--- a/mantisbt/2.2.0/core/project_api.php
+++ b/mantisbt/2.2.0/core/project_api.php
@@ -703,7 +703,7 @@ function project_get_all_user_rows( $p_project_id = ALL_PROJECTS, $p_access_leve
 
 	if( $p_include_global_users ) {
 		db_param_push();
-		$t_query = 'SELECT id, username, realname, access_level
+		$t_query = 'SELECT id, username, realname, access_level, email
 				FROM {user}
 				WHERE enabled = ' . db_param() . '
 					AND access_level ' . $t_global_access_clause;
@@ -717,7 +717,7 @@ function project_get_all_user_rows( $p_project_id = ALL_PROJECTS, $p_access_leve
 	if( $c_project_id != ALL_PROJECTS ) {
 		# Get the project overrides
 		db_param_push();
-		$t_query = 'SELECT u.id, u.username, u.realname, l.access_level
+		$t_query = 'SELECT u.id, u.username, u.realname, l.access_level, u.email
 				FROM {project_user_list} l, {user} u
 				WHERE l.user_id = u.id
 				AND u.enabled = ' . db_param() . '
diff --git a/mantisbt/2.2.0/manage_proj_edit_page.php b/mantisbt/2.2.0/manage_proj_edit_page.php
index 309b41c..1928f41 100644
--- a/mantisbt/2.2.0/manage_proj_edit_page.php
+++ b/mantisbt/2.2.0/manage_proj_edit_page.php
@@ -768,8 +768,9 @@ event_signal( 'EVENT_MANAGE_PROJECT_PAGE', array( $f_project_id ) );
 				</td>
 				<td>
 				<?php
-					$t_email = user_get_email( $t_user['id'] );
-					print_email_link( $t_email, $t_email );
+					// FIXED: Evitar consulta masiva innecesaria
+					// $t_email = user_get_email( $t_user['id'] );
+					print_email_link( $t_user['email'], $t_user['email'] );
 				?>
 				</td>
 				<td><?php echo get_enum_element( 'access_levels', $t_user['access_level'] ) ?></td>