diff --git a/checkin_notes b/checkin_notes index 5042aa806a..b8aae0bf38 100755 --- a/checkin_notes +++ b/checkin_notes @@ -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 diff --git a/html/inc/user.inc b/html/inc/user.inc index 6fa2b266ec..31db4c0f9b 100644 --- a/html/inc/user.inc +++ b/html/inc/user.inc @@ -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); diff --git a/html/inc/util.inc b/html/inc/util.inc index 8c987a7b7b..20a238d550 100644 --- a/html/inc/util.inc +++ b/html/inc/util.inc @@ -423,8 +423,10 @@ function user_links($user) { if ($user->has_profile) { $x .= " id>"; } - # 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; diff --git a/lib/parse.C b/lib/parse.C index ad49070600..7237c01d71 100644 --- a/lib/parse.C +++ b/lib/parse.C @@ -33,9 +33,7 @@ #include #include #include -#if HAVE_IEEEFP_H -#include -#endif +#include #endif #include "error_numbers.h"