mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=8044
This commit is contained in:
parent
98d879e1a7
commit
28551ae350
|
@ -11846,3 +11846,9 @@ Rom 16 Sept 2005 (from Walt Gribben)
|
|||
|
||||
api/
|
||||
windows_opengl.C
|
||||
|
||||
David 17 Sept 2005
|
||||
- include math.h and not ieeefp.h in parse.C
|
||||
|
||||
lib/
|
||||
parse.C
|
||||
|
|
|
@ -132,8 +132,9 @@ function show_user_page_private($user) {
|
|||
start_table("width=100%");
|
||||
show_user_info_private($user);
|
||||
show_user_stats_private($user);
|
||||
# Does this project accept donations? Then put in a project specific
|
||||
# function to show user donation information in ../project/donations.inc
|
||||
|
||||
// Does this project accept donations? Then put in a project specific
|
||||
// function to show user donation information in ../project/donations.inc
|
||||
if (parse_bool($config, "donations_accepted")) {
|
||||
require_once("../project/donations.inc");
|
||||
show_user_donations_private($user);
|
||||
|
|
|
@ -423,8 +423,10 @@ function user_links($user) {
|
|||
if ($user->has_profile) {
|
||||
$x .= " <a href=view_profile.php?userid=$user->id><img border=0 src=head_20.png></a>";
|
||||
}
|
||||
# Does this project accept donations?
|
||||
# If so, do you want to have a link next to user name as it appears on the web site?
|
||||
// Does this project accept donations?
|
||||
// If so, do you want to have a link next to user
|
||||
// name as it appears on the web site?
|
||||
//
|
||||
if ($user->donated == 1) {
|
||||
require_once("../project/donations.inc");
|
||||
$x .= DONATION_LINK;
|
||||
|
|
|
@ -33,9 +33,7 @@
|
|||
#include <cstdlib>
|
||||
#include <locale>
|
||||
#include <string>
|
||||
#if HAVE_IEEEFP_H
|
||||
#include <ieeefp.h>
|
||||
#endif
|
||||
#include <math.h>
|
||||
#endif
|
||||
|
||||
#include "error_numbers.h"
|
||||
|
|
Loading…
Reference in New Issue