summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-03-02 13:51:14 +0000
committerthomascube <thomas@roundcube.net>2008-03-02 13:51:14 +0000
commit019b5d5518763bebe07a54979c9fa485e621422c (patch)
treebcaf496ad9767599a946f3f1c030c84fa7936d61
parentada9715afeab14d98ef23365e44b10ca203a2851 (diff)
Don't check for zlib-output_compression; this is handeled in index.php
-rw-r--r--installer/check.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/installer/check.php b/installer/check.php
index 577699035..45aacde16 100644
--- a/installer/check.php
+++ b/installer/check.php
@@ -13,8 +13,7 @@ $supported_dbs = array('MySQL' => 'mysql', 'MySQLi' => 'mysqli',
'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 @@ foreach ($ini_checks as $var => $val) {
<?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>';
?>