mirror of https://github.com/BOINC/boinc.git
svn path=/trunk/boinc/; revision=23034
This commit is contained in:
parent
226d70d174
commit
c62a55b47f
|
@ -37,7 +37,7 @@ function project_banner($title, $prefix) {
|
|||
|
||||
echo "
|
||||
<p>
|
||||
<span class=\"page_title\">$title</span>
|
||||
<div class=\"page_title\">$title</div>
|
||||
<p>
|
||||
";
|
||||
}
|
||||
|
|
|
@ -364,7 +364,7 @@ blockquote.postbody {
|
|||
vertical-align: middle;
|
||||
}
|
||||
|
||||
div.page_title {
|
||||
.page_title {
|
||||
font-size: 24px;
|
||||
margin: 20px;
|
||||
}
|
||||
|
|
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue