- web: swap positions of reply/delete buttons in private message display

svn path=/trunk/boinc/; revision=17850
This commit is contained in:
David Anderson 2009-04-21 01:03:48 +00:00
parent 5a88fb4028
commit 372b2a61c7
2 changed files with 8 additions and 2 deletions

View File

@ -4012,3 +4012,9 @@ David 19 Apr 2009
cpu_sched.cpp
lib/
coproc.cpp,h
David 20 Apr 2009
- web: swap positions of reply/delete buttons in private message display
html/user/
pm.php

View File

@ -139,8 +139,8 @@ function do_read($logged_in_user) {
echo "<tr><th>".tra("Date")."</th><td>".time_str($message->date)."</td></tr>";
echo "<tr><th>".tra("Message")."</th><td>".output_transform($message->content, $options)."</td></tr>";
echo "<tr><td class=\"pm_footer\"></td><td>\n";
echo "<a href=\"pm.php?action=delete&amp;id=$id\">".tra("Delete")."</a>\n";
echo " | <a href=\"pm.php?action=new&amp;replyto=$id\">".tra("Reply")."</a>\n";
echo "<a href=\"pm.php?action=new&amp;replyto=$id\">".tra("Reply")."</a>\n";
echo " | <a href=\"pm.php?action=delete&amp;id=$id\">".tra("Delete")."</a>\n";
echo " | <a href=\"pm.php?action=inbox\">".tra("Inbox")."</a>\n";
end_table();