fixed view_profile -> view_profile.php

svn path=/trunk/boinc/; revision=3832
This commit is contained in:
Matt Lebofsky 2004-07-09 18:28:41 +00:00
parent 61eaa207ba
commit e11033d3b7
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
define('UOTD_THRESHOLD', 7);
function uotd_thumbnail($profile, $user) {
return "<a href=view_profile?userid=$user->id><img vspace=4 hspace=8 align=left src=" . IMAGE_URL . $user->id . "_sm.jpg></a>";
return "<a href=view_profile.php?userid=$user->id><img vspace=4 hspace=8 align=left src=" . IMAGE_URL . $user->id . "_sm.jpg></a>";
}
function generate_uotd_page($profile, $user) {

View File

@ -423,7 +423,7 @@ function project_is_stopped() {
function user_links($user) {
$x = "<a href=show_user.php?userid=$user->id>$user->name</a>";
if ($user->has_profile) {
$x .= " <a href=view_profile?userid=$user->id><img border=0 src=head_20.png></a>";
$x .= " <a href=view_profile.php?userid=$user->id><img border=0 src=head_20.png></a>";
}
return $x;
}