squirrelmail/functions
thomppj caeff8b548 First, more formatting conventions.
1. Wrap all operands of a complex expression with parentheses.
     For instance:
         if ($bob == 'foo' || $bob == 'bar') {
     is wrong. Do this instead:
         if (($bob == 'foo') || ($bob == 'bar')) {

  2. Carefully decide between pre and post incrementation. If it
     does not matter, always choose pre because it is technically
     more efficient. For instance:
         for ($i = 0; $i < $count; $i++) {
     is wrong. Do this instead:
         for ($i = 0; $i < $count; ++$i) {

  3. Classes should be named in style like this:
         MessageHeader
         Rfc8222Header
     etc. When there is an acronym at the beginning, treat it
     like a word - do NOT captitalize each letter of the acronym.

  4. Put each class in a seperate file named ClassName.class.php.
     Related classes can be put in one directory and then included
     in a main include file.

Second, big changes with mime.class.php here. And I don't think I broke
anything. (Sounds like famous last words, eh?)
2002-08-29 23:42:46 +00:00
..
abook_database.php Getting ready for 1.2.0 release. 2001-12-23 07:42:40 +00:00
abook_global_file.php Fixed *A LOT* of formatting... 2002-01-28 20:41:01 +00:00
abook_ldap_server.php Forgot one { 2002-01-28 20:47:26 +00:00
abook_local_file.php Fix for quoted values by David Rees. 2002-04-06 21:26:37 +00:00
addressbook.php Fix full_address function to allow user setting always to override global one 2002-07-31 11:42:16 +00:00
array.php Getting ready for 1.2.0 release. 2001-12-23 07:42:40 +00:00
attachment_common.php modified html_link to redirect output to view_text. 2002-08-26 11:18:10 +00:00
auth.php recover compose form in case of a session expire 2002-07-31 21:38:32 +00:00
constants.php Added newmail dropdowns, and preparing for special folders only count mails. 2002-01-31 17:04:49 +00:00
date.php Make default theme actually work. #557313 2002-08-09 13:09:32 +00:00
db_prefs.php Overlooked that default theme was also hardcoded in db_prefs, not anymore. 2002-08-09 13:13:37 +00:00
display_messages.php fix for call to do_hook in htmlHeaeder 2002-07-31 21:39:26 +00:00
file_prefs.php Add some code to produce a proper error message when preference/signature files are 2002-07-28 16:55:49 +00:00
gettext.php missed one unuglyfied if 2001-12-28 21:43:40 +00:00
global.php start of using SM-stable methods for handling global vars 2002-08-19 12:21:00 +00:00
html.php fix for amp; stuff 2002-08-06 22:42:45 +00:00
i18n.php "J.I Kim" <aporie@iskra.sarang.net> 2002-08-28 11:36:08 +00:00
imap.php included imap_parse.php 2002-07-03 13:54:27 +00:00
imap_general.php Fixes from Jason to sqimap_read_data. 2002-08-28 14:52:01 +00:00
imap_mailbox.php correctly detect \Noselect in LSUB responses, and set $mbx->is_noselect 2002-08-29 15:43:38 +00:00
imap_messages.php First, more formatting conventions. 2002-08-29 23:42:46 +00:00
imap_parse.php First, more formatting conventions. 2002-08-29 23:42:46 +00:00
imap_search.php Masato 2002-08-22 09:33:09 +00:00
imap_utf7_decode_local.php patch #551871 for feature request #545070 from Stefan Tietke (stfn) regarding utf7 imap encoding 2002-05-16 12:17:15 +00:00
imap_utf7_encode_local.php patch #551871 for feature request #545070 from Stefan Tietke (stfn) regarding utf7 imap encoding 2002-05-16 12:17:15 +00:00
index.php Getting ready for 1.2.0 release. 2001-12-23 07:42:40 +00:00
mailbox_display.php fixed warnings 2002-08-23 16:44:14 +00:00
mime.php First, more formatting conventions. 2002-08-29 23:42:46 +00:00
options.php fix for undefined textarea 2002-08-23 16:46:15 +00:00
page_header.php Lots of small user interface fixes. Added user option to enable/disable "forward as attachment". 2002-08-21 22:56:09 +00:00
plugin.php Sorry, last commit broke the code. I had to make a separate plugin function. 2002-01-31 17:13:51 +00:00
prefs.php Fix prefs so they work under 4.2 as well as 4.1.x. This really needs to 2002-04-26 18:35:00 +00:00
smtp.php FIxing bug #600369 2002-08-28 22:35:03 +00:00
strings.php defrosting 2002-08-20 16:12:05 +00:00
tree.php fix for bug #596781 2002-08-19 07:39:09 +00:00
url_parser.php Moved line to prevent enless loops 2002-08-10 19:39:07 +00:00