Oops, forgot to comment this out again. Clicking checkboxes on message list works...
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 14 Mar 2005 21:00:50 +0000 (21:00 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 14 Mar 2005 21:00:50 +0000 (21:00 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9018 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/page_header.php

index 09af08955c8e2903eae6f6328d1e07189c8c099f..c9698c9c765121603a279ed590578bbfa2c97bf1 100644 (file)
@@ -355,7 +355,7 @@ function setPointer(theRow, theRowNum, theAction, theDefaultColor, thePointerCol
             // performed. Then the checkbox would get deactived, even though we need 
             // it activated. Maybe there is a way to detect if the row was clicked, 
             // and not an item therein...
-            document.getElementById('msg[' + theRowNum + ']').checked = true;
+            //document.getElementById('msg[' + theRowNum + ']').checked = true;
         }
     }
     // 4.1.2 Current color is the pointer one
@@ -367,7 +367,7 @@ function setPointer(theRow, theRowNum, theAction, theDefaultColor, thePointerCol
         else if (theAction == 'click' && theMarkColor != '') {
             newColor              = theMarkColor;
             marked_row[theRowNum] = true;
-            document.getElementById('msg[' + theRowNum + ']').checked = true;
+            //document.getElementById('msg[' + theRowNum + ']').checked = true;
         }
     }
     // 4.1.3 Current color is the marker one
@@ -379,7 +379,7 @@ function setPointer(theRow, theRowNum, theAction, theDefaultColor, thePointerCol
             marked_row[theRowNum] = (typeof(marked_row[theRowNum]) == 'undefined' || !marked_row[theRowNum])
                                   ? true
                                   : null;
-            document.getElementById('msg[' + theRowNum + ']').checked = false;
+            //document.getElementById('msg[' + theRowNum + ']').checked = false;
         }
     } // end 4