This definetely isn't a bug in SM and I'm most certainly nit-picking here, but...
SquirrelMail 1.2.11 -- line 832 SquirrelMail 1.4.0 -- line 878 (not sure about any other versions but I'm sure it's in the get_selectall_link() function) In the script right_main.php (the one that displays your messages in the right frame), when clicking on the 'Toggle All' JavaScript link, it scrolls the window to the top. This irritates me (little things like this get to me). I edited the function get_selectall_link() in ./functions/mailbox_display.php as follows: Line 832: ----------------------- . '</script><a href="#" onClick="CheckAll();">' . _("Toggle All") TO . '</script><a href="#" onClick="CheckAll(); return false;">' . _("Toggle All") ----------------------- Making the return value of the onClick handler false will leave the browser in its current state and *not* execute the href value in the anchor -- which in this case is instructing the browser to scroll to an empty bookmark (or, the top of the page). Returning false will not execute the href value and not make your browser scroll to the top :) I'll step aside for others to post some real problems now, just wanted to share :P Andre ------------------------------------------------------- This SF.NET email is sponsored by: eBay Great deals on office technology -- on eBay now! Click here: http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- squirrelmail-users mailing list List Address: [EMAIL PROTECTED] List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users