From 372b2a61c75cef957c534849f4c3985e3dbaac92 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 21 Apr 2009 01:03:48 +0000 Subject: [PATCH] - web: swap positions of reply/delete buttons in private message display svn path=/trunk/boinc/; revision=17850 --- checkin_notes | 6 ++++++ html/user/pm.php | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/checkin_notes b/checkin_notes index 4619f1a9ac..8c28f9e7c3 100644 --- a/checkin_notes +++ b/checkin_notes @@ -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 diff --git a/html/user/pm.php b/html/user/pm.php index dd02e01c86..028ffb3511 100644 --- a/html/user/pm.php +++ b/html/user/pm.php @@ -139,8 +139,8 @@ function do_read($logged_in_user) { echo "".tra("Date")."".time_str($message->date).""; echo "".tra("Message")."".output_transform($message->content, $options).""; echo "\n"; - echo "".tra("Delete")."\n"; - echo " | ".tra("Reply")."\n"; + echo "".tra("Reply")."\n"; + echo " | ".tra("Delete")."\n"; echo " | ".tra("Inbox")."\n"; end_table();