Ok, this actually works now.
authorfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 6 Aug 2001 14:37:14 +0000 (14:37 +0000)
committerfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 6 Aug 2001 14:37:14 +0000 (14:37 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1475 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/mailbox_display.php

index d297debbd461faadb77e3db695c9aa1c4858e076..30880ec99867ae6bdbd5db014b547bb5893e2b3b 100644 (file)
                    if (! isset($search_stuff)) { $search_stuff = ''; }
                echo "<a href=\"read_body.php?mailbox=$urlMailbox&passed_id=".$msg["ID"]."&startMessage=$startMessage&show_more=0$search_stuff\"";
                do_hook("subject_link");
-               echo " title=\"" . urlencode($msg['SUBJECT']) . 
-                 "\">$flag$subject$flag_end</a>$bold_end</td>\n";
+              
+              $title = get_html_translation_table(HTML_SPECIALCHARS);
+              $title = array_flip($title);
+              $title = strtr($msg['SUBJECT'], $title);
+              $title = str_replace('"', "''", $title);
+
+               echo " title=\"$title\">$flag$subject$flag_end</a>$bold_end</td>\n";
                break;
             case 5: # flags
                $stuff = false;