- Fixed folder creation for Courier using Autoconfig options.
- Fixed encoded string handling inside MDN notifications.
- Fixed unfold header routine in imap_messages (for mailbox_display).
- - Make listcommands work with PHP versions 4.0.4 & 4.0.5.
- Fixed subject_line hook.
- Fixed sqgetGlobalVar switching.
- Fixed handling of encoding/decoding strings.
- Fixed uninitialized indices when parsing attachments.
- Support text/directory MIME-type for vCards (RFC 2425).
- Added Arabic locale. Thanks to Asrar Abbasi <asrar at canasoft.net> and
- Naveed Saqib <naveed.saqib at biznas.com>
+ Naveed Saqib <naveed.saqib at biznas.com>.
+ - Update required PHP version in documentation to 4.0.6.
Version 1.4.0 RC 2a
-------------------
to run as CGI under Apache. How you end up doing this is up to you
(your mileage may vary).
- NOTE: The new plugin architecture required the use of some functions
- which are not in all versions of PHP4. You will need at least
- PHP4 v4.0.4. If you need to upgrade please go ahead and install the
- latest release version of PHP4.
+ You will need at least PHP v4.0.6. If you need to upgrade please go
+ ahead and install it now.
a. Obtaining and compiling PHP4
from scratch and configure your settings as if it was your first install.
NOTE: The new plugin architecture required the use of some functions which
-are not in all versions of PHP4. You will need at least PHP 4.0.4. If you
+are not in all versions of PHP4. You will need at least PHP 4.0.6. If you
need to upgrade please go ahead and install the latest release version of
PHP4.
$good_themes[] = $data['PATH'];
}
}
- if (count($good_themes) == 0)
- $good_themes[] = '../themes/default.php';
+ if (count($good_themes) == 0) {
+ $good_themes[] = '../themes/default.php';
+ }
$which = mt_rand(0, count($good_themes));
$random_theme_good_theme = $good_themes[$which];
sqsession_register($random_theme_good_theme, 'random_theme_good_theme');