*** empty log message ***

svn path=/trunk/boinc/; revision=5144
This commit is contained in:
David Anderson 2005-01-19 19:08:46 +00:00
parent a447159e31
commit 6df7ebc5e8
5 changed files with 9 additions and 3 deletions

View File

@ -22956,4 +22956,9 @@ Bruce 19 Jan 2005
lib/
filesys.C
David 19 Jan 2005
- don't show rating buttons when user looks at their own profile
html/inc/
profile.inc
uotd.inc

View File

@ -457,7 +457,7 @@ function show_profile($userid) {
row1($profile->response1, 2, "foobar");
row1(show_profile_heading2());
row1($profile->response2, 2, "foobar");
if (true) {
if (!$can_edit) {
row1("Your feedback on this profile");
row2(
"Recommend this profile for User of the Day:",

View File

@ -4,7 +4,7 @@ define('UOTD_THRESHOLD', 7);
function uotd_thumbnail($profile, $user) {
if ($profile->has_picture) {
return "<a href=view_profile.php?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 border=0 vspace=4 hspace=8 align=left src=" . IMAGE_URL . $user->id . "_sm.jpg></a>";
} else {
return "";
}

View File

@ -220,7 +220,7 @@ function update_1_13_2005() {
}
function update_1_18_2005() {
mysql_query("ALTER TABLE `forum_preferences` CHANGE `special_user` `special_user` CHAR( 8 ) DEFAULT '0' NOT NULL");
mysql_query("ALTER TABLE forum_preferences CHANGE special_user special_user CHAR( 8 ) DEFAULT '0' NOT NULL");
}
function update_1_19_2005() {

View File

@ -11,6 +11,7 @@ a:active {
}
body , table , input , select {
background-color: #ffffff;
font-family: Verdana, Arial, Sans Serif;
font-size: 12px;
}