Add form name to row_click call as well
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 7 May 2008 17:18:41 +0000 (17:18 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 7 May 2008 17:18:41 +0000 (17:18 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@13108 7612ce4b-ef26-0410-bec9-ea0150e637f0

templates/default/js/default.js
templates/default/message_list.tpl

index 8313cb1547a7816fd6e8e5560cd0c872000e1485..16077e9a2ee5e7664aac767603ec98cba356bb5e 100644 (file)
@@ -14,7 +14,7 @@ var orig_row_colors = new Array();
  *
  * @param   string   the name of the checkbox that should be (un)checked
  */
-function row_click(chkboxName, event) {
+function row_click(chkboxName, event, formName) {
     var chkbox = document.getElementById(chkboxName);
     if (chkbox) {
         // initialize orig_row_color if not defined already
index e946bac70671a0de7a0e5e8ad90f804c96bb8d67..6272dbd9a91f477d56bd0ec9306cf6b50ac72f85 100644 (file)
@@ -361,7 +361,7 @@ if ($pageOffset < $end_msg) {
     $javascript_auto_click = '';
     if ($javascript_on && $fancy_index_highlite) {
         // include the form_id in order to show multiple messages lists. Otherwise id isn't unique
-        $javascript_auto_click = " onmousedown=\"row_click('$form_id"."_msg$i', event)\"";
+        $javascript_auto_click = " onmousedown=\"row_click('$form_id"."_msg$i', event, '$form_name')\"";
     }
 
 
@@ -461,7 +461,7 @@ if ($non_clicked_class != 'even' && $non_clicked_class != 'odd'
             if ($onclick)    { $sText .= " onclick=\"$onclick\""; }
             if ($link_extra) { $sText .= " $link_extra";          }
             if ($javascript_on && $fancy_index_highlite) {
-                  $sText .= " onmousedown=\"row_click('$form_id"."_msg$i', event); setPointer(this." . (empty($bold) ? '' : 'parentNode.') .
+                  $sText .= " onmousedown=\"row_click('$form_id"."_msg$i', event, '$form_name'); setPointer(this." . (empty($bold) ? '' : 'parentNode.') .
                             'parentNode.parentNode, ' . $i . ', \'click\', \''. $non_clicked_class. '\', \'mouse_over\', \'clicked\');"';
             }
             $sText .= ">"