- Show disabled checkboxes for protected folders instead of dots (#1485498)
| | |
| | | - Display inline images with known extensions and non-image content-type (#1486934) |
| | | - Fix "Threaded" checkbox after subfolder creation (#1486928) |
| | | - Fix timezone string in sent mail (#1486961) |
| | | - Show disabled checkboxes for protected folders instead of dots (#1485498) |
| | | |
| | | RELEASE 0.4 |
| | | ----------- |
| | |
| | | |
| | | $table->add('name', Q($display_folder)); |
| | | $table->add('msgcount', ($folder['virtual'] ? '' : $IMAP->messagecount($folder['id'], 'ALL', false, false))); |
| | | $table->add('subscribed', ($protected || $folder['virtual']) ? ($subscribed ? ' •' : ' ') : |
| | | $checkbox_subscribe->show(($subscribed ? $folder_utf8 : ''), array('value' => $folder_utf8))); |
| | | $table->add('subscribed', $checkbox_subscribe->show(($subscribed ? $folder_utf8 : ''), |
| | | array('value' => $folder_utf8, 'disabled' => $protected ? 'disabled' : ''))); |
| | | if ($threading_supported) { |
| | | $table->add('threaded', $folder['virtual'] ? '' : |
| | | $checkbox_threaded->show(($threaded ? $folder_utf8 : ''), array('value' => $folder_utf8))); |