- web: fix typo

svn path=/trunk/boinc/; revision=16227
This commit is contained in:
David Anderson 2008-10-17 16:40:15 +00:00
parent 6143284ad9
commit 1a1a3d20c3
9 changed files with 20 additions and 8 deletions

View File

@ -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

View File

@ -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>
";

View File

@ -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");

View File

@ -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");

View File

@ -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() {

View File

@ -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);

View File

@ -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";

View File

@ -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;

View File

@ -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)) {