Thomas Bruederli
2013-06-13 1f5557817f1739a26c03ec0efa76ccf5d0bff603
program/lib/Roundcube/bootstrap.php
@@ -46,13 +46,15 @@
foreach ($config as $optname => $optval) {
    if ($optval != ini_get($optname) && @ini_set($optname, $optval) === false) {
        die("ERROR: Wrong '$optname' option value and it wasn't possible to set it to required value ($optval).\n"
            ."Check your PHP configuration (including php_admin_flag).");
        $error = "ERROR: Wrong '$optname' option value and it wasn't possible to set it to required value ($optval).\n"
            . "Check your PHP configuration (including php_admin_flag).";
        if (defined('STDERR')) fwrite(STDERR, $error); else echo $error;
        exit(1);
    }
}
// framework constants
define('RCUBE_VERSION', '0.9-beta');
define('RCUBE_VERSION', '0.9.2');
define('RCUBE_CHARSET', 'UTF-8');
if (!defined('RCUBE_LIB_DIR')) {