From: avel Date: Wed, 28 Apr 2004 12:21:21 +0000 (+0000) Subject: Instead of excluding one checkbox at a time, only check what should be checked X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=e0b57c6254d425861cb58ae25732ee2dd450d3f8 Instead of excluding one checkbox at a time, only check what should be checked by Toggle All. This will allow plugins to probably put some more checkboxes (like plugin move_all_messages). Of course, the Toggle All link needs to be restored at some point too. (When did that go away in -DEVEL?) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7297 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index b7185e0c..c010ba8a 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -1156,7 +1156,7 @@ function get_selectall_link($start_msg, $sort, $mailbox) { . "function " . $func_name . "() {\n" . " for (var i = 0; i < document." . $form_name . ".elements.length; i++) {\n" . " if(document." . $form_name . ".elements[i].type == 'checkbox' && " - . "document." . $form_name . ".elements[i].name != 'bypass_trash'){\n" + . " document." . $form_name . ".elements[i].name.substring(0,3) == 'msg'){\n" . " document." . $form_name . ".elements[i].checked = " . " !(document." . $form_name . ".elements[i].checked);\n" . " }\n"