diff options
Diffstat (limited to 'templates/show_users.inc')
-rw-r--r-- | templates/show_users.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_users.inc b/templates/show_users.inc index f0c4997c..6b7d3e14 100644 --- a/templates/show_users.inc +++ b/templates/show_users.inc @@ -99,17 +99,17 @@ while ($results = mysql_fetch_object($db_result)) { <td> - <a href="<?php echo $web_path; ?>/admin/users.php?action=edit&user=<?php echo $user->username; ?>"> + <a href="<?php echo $web_path; ?>/admin/users.php?action=edit&user=<?php echo $user->id; ?>"> <?php echo get_user_icon('edit'); ?> </a> </td> <td> - <a href="<?php echo $web_path; ?>/admin/preferences.php?action=user&user_id=<?php echo $user->username; ?>"> + <a href="<?php echo $web_path; ?>/admin/preferences.php?action=user&user_id=<?php echo $user->id; ?>"> <?php echo get_user_icon('preferences'); ?> </a> </td> <td> - <a href="<?php echo $web_path; ?>/stats.php?user_id=<?php echo $user->username; ?>"> + <a href="<?php echo $web_path; ?>/stats.php?action=user_stats&user_id=<?php echo $user->id; ?>"> <?php echo get_user_icon('statistics'); ?> </a> </td> |