- web: typo in forum RSS from Daniel L G; fixes #1147

- client: message tweak


svn path=/trunk/boinc/; revision=24483
This commit is contained in:
David Anderson 2011-10-25 17:22:18 +00:00
parent 1f71240c98
commit 6297bdbc77
3 changed files with 11 additions and 2 deletions

View File

@ -7775,3 +7775,12 @@ Rom 25 Oct 2011
/
configure.ac
version.h
David 26 Oct 2011
- web: typo in forum RSS from Daniel L G; fixes #1147
- client: message tweak
html/inc/
forum_rss.inc
client/
cpu_sched.cpp

View File

@ -1559,7 +1559,7 @@ bool CLIENT_STATE::enforce_run_list(vector<RESULT*>& run_list) {
if (ncpus_used >= ncpus) {
if (log_flags.cpu_sched_debug) {
msg_printf(rp->project, MSG_INFO,
"[cpu_sched_debug] all CPUs used (%.2f > %d), skipping %s",
"[cpu_sched_debug] all CPUs used (%.2f >= %d), skipping %s",
ncpus_used, ncpus,
rp->name
);

View File

@ -66,7 +66,7 @@ function forum_rss($forumid, $userid, $truncate, $threads_only, $ndays) {
if ($threads_only) {
$q = "$clause and hidden=0 and create_time > $tlimit order by create_time desc";
} else {
$q = "$clause and hidden=0 and and timestamp > $tlimit order by timestamp desc";
$q = "$clause and hidden=0 and timestamp > $tlimit order by timestamp desc";
}
$threads = BoincThread::enum($q);