From 4333449ddbb4022923ffcb0413cfed9294d788a2 Mon Sep 17 00:00:00 2001 From: fidian Date: Wed, 1 Aug 2001 22:28:04 +0000 Subject: [PATCH] Allegedly adds the title="blah" to the subject link. Not sure, since my browser doesn't actually pop up anything. May or may not work. Someone test it. If it doesn't urldecode the subject (like if you see pluses instead of spaces and %## a lot), let me know and I'll whip up something else. If you feel courageous, try changing it yourself. Don't forget to attempt to view subjects like this: #This"is a $nasty subject ! line that ' may or | may > not work :-) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1472 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mailbox_display.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index 35c81f1f..d297debb 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -123,7 +123,8 @@ if (! isset($search_stuff)) { $search_stuff = ''; } echo "$flag$subject$flag_end$bold_end\n"; + echo " title=\"" . urlencode($msg['SUBJECT']) . + "\">$flag$subject$flag_end$bold_end\n"; break; case 5: # flags $stuff = false; -- 2.25.1