mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=6026
This commit is contained in:
parent
8a90db98b0
commit
1ae7d9b042
|
@ -718,6 +718,7 @@ int boinc_upload_file(std::string& name) {
|
|||
FILE* f = boinc_fopen(buf, "w");
|
||||
if (!f) return ERR_FOPEN;
|
||||
have_new_upload_file = true;
|
||||
fclose(f);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -5991,6 +5991,8 @@ David 3 May 2005
|
|||
which does an update only of those fields that have
|
||||
changed relative to the given initial values.
|
||||
(from Bruce Allen)
|
||||
- scheduler: fixed a bug where host_cpid wasn't being maintained properly.
|
||||
Caused it to change on each RPC.
|
||||
- removed unused "p_calculated" from HOST
|
||||
- removed code to parse non-existent fields p_fpop_err etc. in HOST
|
||||
|
||||
|
@ -6044,3 +6046,12 @@ Jeff 4 May 2005
|
|||
configure.ac
|
||||
lib/
|
||||
parse.C
|
||||
|
||||
David 4 May 2005
|
||||
- bug fix in boinc_upload_file() (from Tolu Aina)
|
||||
- added forum_preferences.ignore_sticky_posts to schema
|
||||
|
||||
api/
|
||||
boinc_api.C
|
||||
db/
|
||||
schema.sql
|
||||
|
|
|
@ -414,6 +414,7 @@ create table forum_preferences (
|
|||
low_rating_threshold integer not null,
|
||||
high_rating_threshold integer not null,
|
||||
ignorelist varchar(254) not null,
|
||||
ignore_sticky_posts tinyint(1) unsigned not null,
|
||||
primary key (userid)
|
||||
) type=MyISAM;
|
||||
|
||||
|
|
|
@ -40,6 +40,7 @@ function show_name($x) {
|
|||
}
|
||||
|
||||
echo "<table bgcolor=ddddff width=100% border=2 cellpadding=6>\n";
|
||||
show_name("Tolu Aina");
|
||||
show_name("Bruce Allen");
|
||||
show_name("David Anderson");
|
||||
show_name("Noaa Avital");
|
||||
|
|
|
@ -268,7 +268,7 @@ function update_4_20_2005(){
|
|||
}
|
||||
|
||||
function update_4_30_2005(){
|
||||
do_query("ALTER TABLE `forum_preferences` ADD `ignore_sticky_posts` TINYINT( 1 ) UNSIGNED NOT NULL AFTER `no_signature_by_default`");
|
||||
do_query("ALTER TABLE `forum_preferences` ADD `ignore_sticky_posts` TINYINT( 1 ) UNSIGNED NOT NULL");
|
||||
}
|
||||
|
||||
//update_10_25_2004();
|
||||
|
|
Loading…
Reference in New Issue