mirror of https://github.com/BOINC/boinc.git
parent
6143284ad9
commit
1a1a3d20c3
|
@ -8442,3 +8442,9 @@ Charlie 16 Oct 2008
|
|||
|
||||
clientgui/
|
||||
ViewProjects.cpp,.h
|
||||
|
||||
David 17 Oct 2008
|
||||
- web: fix typo
|
||||
|
||||
html/user/
|
||||
edit_user_info_action.php
|
||||
|
|
|
@ -33,7 +33,7 @@ function download_link($pname) {
|
|||
$s = number_format(filesize($path)/1000000, 2);
|
||||
|
||||
echo "
|
||||
<table border=4 cellpadding=10><tr><td class=heading>
|
||||
<table cellpadding=10><tr><td class=heading>
|
||||
<a href=\"$url\"><font size=4><u>".tra("Download BOINC")."</u></font></a>
|
||||
<br>".
|
||||
sprintf(tra("%s for %s (%s MB)"), $num, $long_name, $s )."
|
||||
|
@ -129,7 +129,6 @@ function show_download($pname) {
|
|||
}
|
||||
echo "
|
||||
| <a href=\"trac/wiki/VersionHistory\">Version history</a>
|
||||
| <a href=\"http://boincfaq.mundayweb.com/index.php?view=376\">FAQ</a>
|
||||
<p>
|
||||
</td><td valign=top>
|
||||
";
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
require_once("docutil.php");
|
||||
require_once("spoken_languages.php");
|
||||
require_once("help_db.php");
|
||||
require_once("../html/inc/translation.inc");
|
||||
require_once("translation.inc");
|
||||
|
||||
page_head("Live help via Internet phone or email");
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
require_once("docutil.php");
|
||||
require_once("countries.inc");
|
||||
require_once("../html/inc/translation.inc");
|
||||
require_once("translation.inc");
|
||||
require_once("poll.inc");
|
||||
require_once("poll_data.inc");
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
require_once("docutil.php");
|
||||
require_once("poll.inc");
|
||||
require_once("../html/inc/translation.inc");
|
||||
require_once("translation.inc");
|
||||
require_once("poll_data.inc");
|
||||
|
||||
function error() {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
require_once("docutil.php");
|
||||
require_once("poll.inc");
|
||||
require_once("../html/inc/translation.inc");
|
||||
require_once("translation.inc");
|
||||
require_once("poll_data.inc");
|
||||
|
||||
mysql_pconnect("localhost", "boincadm", null);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
require_once('docutil.php');
|
||||
require_once('../html/inc/translation.inc');
|
||||
require_once('translation.inc');
|
||||
|
||||
$cachefile = "cache/poll_results_$language_in_use.html";
|
||||
|
||||
|
|
|
@ -86,6 +86,13 @@ td.indent {
|
|||
border-left: 4px solid white;
|
||||
}
|
||||
|
||||
td.heading{
|
||||
background-color: rgb(223, 240, 255);
|
||||
border: 4px solid lightblue;
|
||||
-moz-border-radius: 6px;
|
||||
-webkit-border-radius: 6px;
|
||||
}
|
||||
|
||||
td.heading_left {
|
||||
background-color: rgb(223, 240, 255);
|
||||
border: 1px solid lightblue;
|
||||
|
|
|
@ -22,7 +22,7 @@ require_once("../inc/util.inc");
|
|||
require_once("../inc/countries.inc");
|
||||
|
||||
$user = get_logged_in_user();
|
||||
check_tokens($user->authentictor);
|
||||
check_tokens($user->authenticator);
|
||||
|
||||
$name = boinc_htmlentities(post_str("user_name"));
|
||||
if ($name != strip_tags($name)) {
|
||||
|
|
Loading…
Reference in New Issue