it's probably worth fixing this in the code as well.
a simple function would do it.
this could go in index.php and be called before the setting of the include path.
function rcmail_set_path_separator()
{
if (defined('PATH_SEPARATOR'))
return;
|
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN')
|define('PATH_SEPARATOR', ';');
else
define('PATH_SEPARATOR', ':');
return }
i'll submit a patch when i get a spare moment (unless someone beats me to it, hint hint...)
cheers justin