mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=5144
This commit is contained in:
parent
a447159e31
commit
6df7ebc5e8
|
@ -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
|
||||
|
|
|
@ -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:",
|
||||
|
|
|
@ -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 "";
|
||||
}
|
||||
|
|
|
@ -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() {
|
||||
|
|
|
@ -11,6 +11,7 @@ a:active {
|
|||
}
|
||||
|
||||
body , table , input , select {
|
||||
background-color: #ffffff;
|
||||
font-family: Verdana, Arial, Sans Serif;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue