From 019b5d5518763bebe07a54979c9fa485e621422c Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Sun, 02 Mar 2008 08:51:14 -0500 Subject: [PATCH] Don't check for zlib-output_compression; this is handeled in index.php --- installer/check.php | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/installer/check.php b/installer/check.php index 5776990..45aacde 100644 --- a/installer/check.php +++ b/installer/check.php @@ -13,8 +13,7 @@ 'PostgreSQL' => 'pgsql', 'SQLite (v2)' => 'sqlite'); $ini_checks = array('file_uploads' => 1, 'session.auto_start' => 0, - 'magic_quotes_gpc' => 0, 'magic_quotes_sybase' => 0, - 'zlib.output_compression' => 0); + 'magic_quotes_gpc' => 0, 'magic_quotes_sybase' => 0); $source_urls = array( 'Sockets' => 'http://www.php.net/manual/en/ref.sockets.php', @@ -145,11 +144,11 @@ <?php -if ($RCI->failures) +if ($RCI->failures) { echo '<p class="warning">Sorry but your webserver does not meet the requirements for RoundCube!<br /> Please install the missing modules or fix the php.ini settings according to the above check results.<br /> Hint: only checks showing <span class="fail">NOT OK</span> need to be fixed.</p>'; - +} echo '<p><br /><input type="submit" value="NEXT" ' . ($RCI->failures ? 'disabled' : '') . ' /></p>'; ?> -- Gitblit v1.9.1