Skip to content

Commit 378ad97

Browse files
committedDec 12, 2012
Make username in Manage Projects page a link to edit user
Fixes #3693
1 parent d731618 commit 378ad97

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎manage_proj_edit_page.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,11 @@
544544
$t_user = $t_users[$i];
545545
?>
546546
<tr <?php echo helper_alternate_class() ?>>
547-
<td><?php echo $t_display[$i] ?></td>
547+
<td>
548+
<a href="manage_user_edit_page.php?user_id=<?php echo $t_user['id'] ?>">
549+
<?php echo $t_display[$i] ?>
550+
</a>
551+
</td>
548552
<td>
549553
<?php
550554
$t_email = user_get_email( $t_user['id'] );

0 commit comments

Comments
 (0)
Please sign in to comment.