Skip to content

Commit

Permalink
Make username in Manage Projects page a link to edit user
Browse files Browse the repository at this point in the history
Fixes #3693
  • Loading branch information
dregad committed Dec 12, 2012
1 parent d731618 commit 378ad97
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion manage_proj_edit_page.php
Expand Up @@ -544,7 +544,11 @@
$t_user = $t_users[$i];
?>
<tr <?php echo helper_alternate_class() ?>>
<td><?php echo $t_display[$i] ?></td>
<td>
<a href="manage_user_edit_page.php?user_id=<?php echo $t_user['id'] ?>">
<?php echo $t_display[$i] ?>
</a>
</td>
<td>
<?php
$t_email = user_get_email( $t_user['id'] );
Expand Down

0 comments on commit 378ad97

Please sign in to comment.