Fixed javascript errors when clicking on subject of unread messages
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 31 Mar 2005 11:44:58 +0000 (11:44 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 31 Mar 2005 11:44:58 +0000 (11:44 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9170 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/mailbox_display.php

index ad3355a2d1456d045f13ede080bc93c9f087e61f..06f101386b9b29fe7e3307b284c2af224f090466 100644 (file)
@@ -436,7 +436,7 @@ function printMessageInfo($aMsg) {
                 // parentNode property is DOM Level 1
                 //
                 if ($javascript_on && $fancy_index_highlite)
-                    $td_str .= ' onmousedown="row_click(\'msg[' . $t . ']\'); setPointer(this.parentNode.parentNode, ' . $t . ', \'click\', \'' . $hlt_color . '\', \'' . $mouseoverColor . '\', \'' . $clickedColor . '\');"';
+                    $td_str .= ' onmousedown="row_click(\'msg[' . $t . ']\'); setPointer(this.' . (empty($bold) ? '' : 'parentNode.') . 'parentNode.parentNode, ' . $t . ', \'click\', \'' . $hlt_color . '\', \'' . $mouseoverColor . '\', \'' . $clickedColor . '\');"';
 
                 $td_str .= ' ' .concat_hook_function('subject_link', array($start_msg, $searchstr));
                 if ($subject != $sSubject) {