svn path=/trunk/boinc/; revision=23034

This commit is contained in:
David Anderson 2011-02-14 21:35:29 +00:00
parent 226d70d174
commit c62a55b47f
3 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@ function project_banner($title, $prefix) {
echo "
<p>
<span class=\"page_title\">$title</span>
<div class=\"page_title\">$title</div>
<p>
";
}

View File

@ -364,7 +364,7 @@ blockquote.postbody {
vertical-align: middle;
}
div.page_title {
.page_title {
font-size: 24px;
margin: 20px;
}

View File

@ -86,14 +86,14 @@ function do_inbox($logged_in_user) {
<input type=hidden name=action value=delete_selected>
";
echo form_tokens($logged_in_user->authenticator);
start_table();
start_table("id=thread width=100%");
echo "<tr><th>".tra("Subject")."</th><th>".tra("Sender and date")."</th><th>".tra("Message")."</th></tr>\n";
$i = 0;
foreach($msgs as $msg) {
$i++;
$class = ($i%2)? "row0": "row1";
echo "<tr class=$class>\n";
$checkbox = "<input type=\"checkbox\" name=\"pm_select[]\" value=\"".$msg->id."\">";
$checkbox = "<input type=\"checkbox\" name=\"pm_select\" value=\"".$msg->id."\">";
if (!$msg->opened) {
$msg->update("opened=1");
}